Re: [PHP] convert array to HTML GET request

2005-10-03 Thread hope
on 2nd page you can use global $HTTP_POST_VARS; print_r($HTTP_POST_VARS); /// u can use $HTTP_GET_VARS for GET method regards hope adriano ghezzi wrote: if i understand well you need to get an array from html post if you use the same name for your html fields you automatically have

[PHP] updating forms

2005-09-29 Thread hope
if i get it on next page n save it database, the next time wen i wil dsiplay there wil be no brs . n how to update the page n display updated text? regards hope -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] update page n display

2005-09-28 Thread hope
n how to update the page n display updated text? regards hope -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] passing values from dynamic form to another php page?

2005-09-16 Thread hope
Quite rite. Well i have used this on my next page: global $HTTP_POST_VARS; $num_fields=count($HTTP_POST_VARS); while(list($key, $value) = each($HTTP_POST_VARS)) { echo "$key = $value"; /or whatever coding i want to do// } regards hope Jay Blanc

[PHP] passing values from dynamic form to another php page?

2005-09-15 Thread hope
        // now i want to access the values from input fields on next page? can somebody give me idea how to pass all form field values to next page in this context?? regards hope -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] changes in php.ini

2005-08-26 Thread hope
ya php is working fine Raz wrote: Have you tested to make sure that php is actually working yet? Raz -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] changes in php.ini

2005-08-26 Thread hope
Nops I m using IIS Hope Jasper Bryant-Greene wrote: hope wrote: Hi all Whenever I create a site and create a index.php file as my home page. Whenever i run it a http://localhost/myproject/ it says Page cannot be found However if I have index.html file it displays. SOmebody told me

[PHP] changes in php.ini

2005-08-26 Thread hope
there. Regards Hope -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] re: parallel execution of code

2005-08-09 Thread hope
U might try omthing like this:: $query = "SELECT id FROM mytable WHERE bla LIKE " . $x ."; $result = mysql_query($query, $cnn) or die(mysql_error()); $totalRows_result = mysql_num_rows($result); if($totalRo

[PHP] Re: can't find the parser error

2005-08-04 Thread hope
well u have a parse error in ur TESTARRAY.PHP file within the foreach loop u hav writen print "$day" while here u must also terminate it through semi-colon like this print "$day"; This wil solve the problem Now it wil work zedleon wrote: I am having tro

Re: [PHP] PHP form not working

2005-08-02 Thread hope
u can also work out like this: $email_err ="Please enter your email address!/span>/>"; $message_err = "Please enter a message!"; this wil also work perfectly alrite. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php