Search results

  1. anuj_web

    JavaScript problem

    NOTHER Q I just want to stor values from 1 to 31 in a combobox.....I tried this code...but Cannot run th is fuction in the Onclick event ,also not working in Onchange event <select name="cmbmonth" size="1" id="Combobox8"...
  2. anuj_web

    HTML question

    Actually ,I am learning PHP and have quite a bit job to finish b4 the end of this month so can't put my hands into everything.... neway thanks for replying... Can u tell me how to send email from our servers using PHP code thanks
  3. anuj_web

    HTML question

    Hi, I have 2 combo's in my form....Th second combo values varies according to that selected in the first combo..like whne u select a country the states in it are listed in another .... how can this be done ?? I also want to ask how can i make my form look better without the use of CSS...
  4. anuj_web

    HTML question

    edit:This is a repost..... I do not know how it cam einto existence ...seriously MODS please delete this
  5. anuj_web

    PHP/MySQL

    I can understand this better,thanks works beautifully .... One more thing ..do i need to set variables back to null everytime i load the PHP file or it happens by its own..if yes then wat should i do $var=0 or $var=''
  6. anuj_web

    PHP/MySQL

    can u please explain the code...its just goin' o'er my head while ($row = mysql_fetch_assoc($result)) { print "Row $rowcount<br />"; while(list($var, $val) = each($row)) { print "<B>$var</B>: $val<br />"; } print "<br />"...
  7. anuj_web

    PHP/MySQL

    hI Is there something wrong with the code $result = @mysql_query("SELECT * FROM dc WHERE DCID='$id'"); $pass1=mysql_result($result,"pass" ); $phone=mysql_result($result,"phone" ); Actually i want to fetcha row from the database and take data from that row .... this is not working...
  8. anuj_web

    Need a Suggestion

    thanks,that was a gr8 piece of suggestion
  9. anuj_web

    Need a Suggestion

    Hi, I want to validate data types of info entered by the user in an HTML form... I want to know whether it is better to validate in that form itself(using php) or validate in the PHP file to which the values are being sent In the fomer case,Whenever i click submit...then everytime the...
  10. anuj_web

    MySQL Problem...

    I JUST CHANGED THE datatype to varchar..found the solution on the net and am using user generated ID now.. thanks neway for replying
  11. anuj_web

    MySQL Problem...

    Hi,, I have used auto increment property for my primary key in a table... but in case when i delete old records,and then when i addd new records then ,the value starts from the value that was previously stored... i mean ..if i have stored upto 3 then when i delete all the records new...
  12. anuj_web

    Cannot pass values to PHP files ...

    Sorry ,but i found out wat u said was true... it is working after removing enctype field 'twas my mistake if i tell u the n i'm screwed for sure :D actually i used paranthese instead of [] apologies again
  13. anuj_web

    Cannot pass values to PHP files ...

    it is working thank you thanks alot for your help
  14. anuj_web

    Cannot pass values to PHP files ...

    no it does not work either :-( verbsite suggested this,i tried but it did not work
  15. anuj_web

    Cannot pass values to PHP files ...

    k thanks i'll try and reply it still does not work for me i removed 'enctype="text/plain but still... the code you posted has the enctype field in it... it still doesnt work...did it work whenu ran the code ?
  16. anuj_web

    Cannot pass values to PHP files ...

    html code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Untitled Page</title> <meta name="GENERATOR" content=""> </head> <body bgcolor="#FFFFFF" text="#000000"> <div...
  17. anuj_web

    PHP-MY SQL question

    hI THANKS WOIWKY 4 replying i have one more q How to pass same variables between two or more files ,without making thmem global
  18. anuj_web

    PHP-MY SQL question

    and one more thing ...is the session vaiable global ..?? where all can i access it...does it have the same reason as above i.e. including files ... and do we include files only to share variables ??
  19. anuj_web

    PHP-MY SQL question

    Hi, I want to ask that when we switch between two or more php pages do we have to again re-establish connection with database And one more... that dont we have to close the database after opening it ??
Top