Re: [PHP-DB] The noobest of questions...

2002-12-10 Thread DL Neil
Hi Brett, [please keep conversations on the list - someone else might have helped you more promptly - others might benefit from following the conversation] This is how I have the code written: if ($num_results 0){ fopen(http://www.vcathletics.org/Misc/AdminMenu.htm,r;); } If I go to

[PHP-DB] The noobest of questions...

2002-12-08 Thread Brett Lathrope
How do you load a standard web page from PHP. I thought, from what I read, that is was with fopen() ... but its not working for me. Thanks -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] The noobest of questions...

2002-12-08 Thread DL Neil
Brett, Works for me! Show your code, =dn How do you load a standard web page from PHP. I thought, from what I read, that is was with fopen() ... but its not working for me. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] The noobest of questions...

2002-12-08 Thread John W. Holmes
How do you load a standard web page from PHP. I thought, from what I read, that is was with fopen() ... but its not working for me. You can do it with fopen(). If it's not working, make sure there are no redirects, as fopen() (until PHP 4.3) will not follow them. ---John W. Holmes... PHP