www.webdeveloper.com

Search:

Type: Posts; User: MarPlo

Page 1 of 10 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    770

    Hi, You need to get the value from input, than,...

    Hi,
    You need to get the value from input, than, add the value in the code added with innerHTML.
    Something like this:

    var val = document.getElementById('id_input').value;...
  2. Hi, The 'npi' column is integer, so, the value...

    Hi,
    The 'npi' column is integer, so, the value must be passed without quotes.
    Also, the $npi variable is not defined.
    Anyway, try this query:

    $sql = ("UPDATE `doctor_data` SET `dr_first_name`...
  3. Hi, To get the ip address of visitor you need to...

    Hi,
    To get the ip address of visitor you need to use a server side script, for example with php. Look on the net for "get ip php".
    You cannot hide the html code.
  4. Replies
    2
    Views
    695

    Hi, Try delete the single quotes from 'username'...

    Hi,
    Try delete the single quotes from 'username' in sql query.
    If not works, post that piece of code.
  5. Replies
    3
    Views
    628

    Hi, I think the image is added and displayed as...

    Hi,
    I think the image is added and displayed as background with css.
  6. Replies
    2
    Views
    489

    Hi, It is ok, you can increase the line height...

    Hi,
    It is ok, you can increase the line height (space between lines) using this code in css:

    selector { line-height:200%; }
  7. Replies
    2
    Views
    248

    AJAX Hi, Try adding "window." before "onload". ...

    Hi,
    Try adding "window." before "onload".

    window.onload = function() {
    if(document.getElementById('documentlist').getElementsByTagName('li').length < 1) {
    ...
  8. Thread: Education

    by MarPlo
    Replies
    4
    Views
    990

    Hi, If you know html and css, try learn PHP and...

    Hi,
    If you know html and css, try learn PHP and Javascript. With these languages you can create profesional and dinamically web sites.
    You can find courses with free lessons, tutorials and e-books...
  9. Replies
    3
    Views
    325

    Hi, Try use this code: ...

    Hi,
    Try use this code:

    $dbc=mysql_connect($db_hostname, $db_username, $db_pass) or die ('I am unable to connect to the database because of: ' . mysql_error()); //(Line 50)
    echo...
  10. Login the user with Facebook without revealing the APP ID

    Hi,
    In the Facebook documentation about Login the user with Facebook APP they say:

    "Because it requires you to include your App Secret you should not attempt to make this call client-side as that...
  11. Google +1 and changing site name without www

    Hi,
    I changed the website URL from http://www to URL without "www", using also 301 redirect in htaccess.
    Now, all the +1 Google which was for the name with www disaperred.
    It is not such a big...
  12. New Google Tool for Webmasters - Disavow Links

    Hi,
    I found that Google introduced a new tool for Webmasters, "Disavow Links", that enables you to disavow links to your site. If you've been notified of a manual spam action based on "unnatural...
  13. jQuery Hi, Try add a "height" and "overflow" to "ul ul"...

    Hi,
    Try add a "height" and "overflow" to "ul ul" in css.

    ul ul {
    display:none; /* Sub menus are hiden by default */
    position:absolute;
    top:2em;
    left:0;
    right:auto; /*resets...
  14. Hi The address from "href" must be between...

    Hi
    The address from "href" must be between quotes.

    echo "<A HREF=\"$PHP_SELF?page=$I&x=$x&y=$y&z=$z&t=$t&r=$r&s=$s\">$I</A>";
    You must get data from url, with $_GET , and use it in your query.
    ...
  15. Replies
    5
    Views
    208

    Hi, Remove the simple quotes from the name of...

    Hi,
    Remove the simple quotes from the name of the table. Use these character `...` (near key 1 on the keyboard), or simple, just the name. The same for column name.

    $query="SELECT * FROM cars";
  16. Replies
    5
    Views
    644

    SEO and Changing the host

    Hi,
    Does changing the host too frequently affect the ranking of the web site in search engines.
    For example, if i change the hosting company 3 times in 2 months, does it affect the Page Rank?...
  17. Hi, In the script in "post.php" there is no code...

    Hi,
    In the script in "post.php" there is no code which to save the ratings. It just gets data, and return it in JSON format.
    It think it is needed more code which saves data into a file, or...
  18. Replies
    2
    Views
    656

    Hosting server location

    Hi,
    Does it matter the location of the hosting server.
    For example, if I have a wensite in english, but the hosting server is in Spain, and I want target users from UK, USA, Canada; is it better in...
  19. Hi, The file "post.php" should contain the php...

    Hi,
    The file "post.php" should contain the php script that registers the ratings. In this case, if it is empty, you can ask the person who made the script.
    Or try another script, for example this:...
  20. Hi, Try to let empty the src attribute of...

    Hi,
    Try to let empty the src attribute of <iframe> (or add the URL of a blank page).

    <iframe id="target" name="target" src="" style="display:none;"></iframe>
  21. If it is useful for someone, I found this example...

    If it is useful for someone, I found this example on the net:

    # Port-based virtual hosting: every php install uses a vhost on a different port
    Listen 8447
    Listen 8423

    ### BASE virtualhost...
  22. Run different PHP versions on virtual hosts in apache 2.2

    Hi,
    How can I configure Apache 2.2 server to have PHP 5.3 in all virtual hosts, except one virtual host in which to run PHP 4.4? I have all the php and .dll files.
  23. Hi, Try replace: var...

    Hi,
    Try replace:
    var ele=document.frames[frame1].document.getElementById(id1);
    With this:
    var ele=document.getElementById(iframe_id).contentWindow.document.getElementById(id1);
    - And use an ID...
  24. Hi, I think that getEle('...') is a syntax...

    Hi,
    I think that getEle('...') is a syntax error, and it should be: document.getElementById instead of getEle .
  25. Replies
    5
    Views
    417

    Hi, From what I know, reading the source code of...

    Hi,
    From what I know, reading the source code of the page is a functionality of the browser. A code in the page cannot block this functionality.
Results 1 to 25 of 227
Page 1 of 10 1 2 3 4
HTML5 Development Center



Recent Articles