RE: [PHP] Pagination Part 2
> -Original Message- > From: conbud [mailto:[EMAIL PROTECTED] > Sent: 12 March 2003 19:12 > > > Hi, Ive been trying to get this to work but I keep getting this error > > Parse error: parse error, unexpected $ in > /home/conbud/nrlug/test3.php > on line 72 > > line 72 is just the ending php bracket, Well, this is a pretty cryptic PHP error message -- $ in this context just means "end of file" (similar to its use in preg/ereg patterns!). The most likely cause of this is that you have an unmatched opening brace {. > heres what I got: > > > @mysql_connect(localhost, root, boing_boing) or > die("ERROR--CAN'T > CONNECT TO SERVER"); > @mysql_select_db("nrlug") or die("ERROR--CAN'T CONNECT TO DB"); > > $limit= 2; > $query_count= "SELECT lnkname FROM links"; > $result_count= mysql_query($query_count); > $totalrows= mysql_num_rows($result_count); > > if(empty($page)) > $page = 1; > > > $limitvalue = $page * $limit - ($limit); > $query = "SELECT * FROM links LIMIT $limitvalue, $limit"; > $result= mysql_query($query) or die("Error: " . > mysql_error()); > > if(mysql_num_rows($result) == 0) > echo("Nothing to Display!"); > > $bgcolor = "#E0E0E0"; // light gray > > echo(""); > > while($row = mysql_fetch_array($result)){ brace level: 1 > if($bgcolor == "#E0E0E0") > $bgcolor = "#FF"; > else > $bgcolor = "#E0E0E0"; > > echo("\n"); > echo($row['lnkname']); > echo("\n\"); > echo($row['id']); > echo("\n"); > } brace level: 0 > > echo(""); > > if($page != '1'){ brace level: 1 > $pageprev = $page--; > > echo("PREV "); > }else brace level: 0 > echo("PREV "); > > $numofpages = $totalrows / $limit; > > for($i = '1'; $i <= $numofpages; $i++){ brace level: 1 > if($i == $page) > echo($i." "); > else > echo("$i "); > > > if(($totalrows % $limit) != '0'){ brace level: 2 > if($i == $page) > echo($i." "); > else > echo("$i "); > > if(($totalrows - ($limit * $page)) > '0'){ brace level: 3 > $pagenext = $page++; > > echo("NEXT"); > }else brace level: 2 > echo(" NEXT ".$limit); > > mysql_free_result($result); > > ?> Uh -- brace level is still 2, which means you have 2 unclosed opening braces. Put those in at the appropriate places (and your indentation is pretty suggestive of where that is!) and all should be fine. Cheers! Mike - Mike Ford, Electronic Information Services Adviser, Learning Support Services, Learning & Information Services, JG125, James Graham Building, Leeds Metropolitan University, Beckett Park, LEEDS, LS6 3QS, United Kingdom Email: [EMAIL PROTECTED] Tel: +44 113 283 2600 extn 4730 Fax: +44 113 283 3211 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] sessions garbadge
> My gc_maxlifetime = 3600 (1 hour) and my probability = 100 , just for > testing . When i create a session on my site and i dont log out , the > session var will still remain on the server , ok , after an hour (not > exactly an hour) , when i surf the site , the collector destroys that var > on > the server (linux server) ! That is how it should work ! But when i create > a > session at say 23:36 , the session var will still be on the server at 8:16 > (after the carbadge collector came around) , why does this happen , does > php > work in a 12 cicle only , or what is wrong ? How do you know the garbage collector was started? There is a (by default) 1% chance that upon each request to your server, garbage collection will be initiated. So, even though you have your time limit set for an hour, it could be longer than that before the actual 1% chance is triggered. It could take quite a while longer if there is not a whole lot of traffic to your site. ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] session variables
> Is it wise or wrong to put long strings into a session variable ? Is it > better to keep the values short ? The more data you put into your session, the more data that has to be read and written to a file on your server each time someone accesses a page. More data is going to slow things down. If it's your only option, then use it. ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] removing appended chars - solved!!! Thanks
Thanks, I solved it "Adriaan Nel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Thanks, I tried the trim function and it solves most of my problems, but I > still get duplicatesit's so weird, could any1 please just quickly > check through these lines of code and tell me if you see anything thats > wrong > > The records in the dbase are uploaded with another php file, which does just > that, no problem over therethis problem is given even if I upload the > same file to the dbase, it's then supposed to not display anything on > screen, cause all records exists allready, but it displays a whole lists of > supposedly new records...?? > > Here is the code that's giving the problem: > > /*++ > ++ > + checking for new records, not yet in dbase... > ++ > > */ > $lines = file ('../includes/new1.csv'); > > foreach ($lines as $line_num => $line) { > list($npr_nr,$npr_exvat,$npr_desc) = explode(",",$line); > > $npr_nr = trim($npr_nr, " "); > > $query = "SELECT product_id, product_nr from products"; > $currentprs = mysql_query ($query, $db_connection) or die (mysql_error()); > while (list ($currentprs_id, $currentprs_nr) = mysql_fetch_row > ($currentprs)) > { > if ($npr_nr == $currentprs_nr) { >mysql_query ("DELETE from tmpprods where product_nr = > '$currentprs_nr'",$db_connection) or die (mysql_error()); >} // end if > } // end while > } // end foreach > > /*++ > ++ > + Finish checking for new records, not yet in dbase... > +++ > > */ > > > Thanks again > Adriaan > > > "- Edwin" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Hi, > > > > "Adriaan Nel" <[EMAIL PROTECTED]> wrote: > > > > > Do any1 know how I can check for spaces here, > > > and remove them if present > > > > http://www.php.net/manual/en/function.trim.php ? > > http://www.php.net/manual/en/function.rtrim.php ? > > http://www.php.net/manual/en/function.lrim.php ? > > > > - E > > > > __ > > Do You Yahoo!? > > Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ > > > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] PHP/HTML table layout?
Hi, "Bev" <[EMAIL PROTECTED]> wrote: [snip] > I wanted to fixed sized cells and that when I type do not > increase/decrease the surronding cells.Can this be done? [/snip] Try having your with a fixed width as well: Ex. then with your columns: I think you also have to take note of your "cellspacing" and " cellpadding"... (Default is "3", I think.) And, yes, this has nothing to do with PHP ;) - E __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] removing appended chars - please help, quite urgent
Thanks, I tried the trim function and it solves most of my problems, but I still get duplicatesit's so weird, could any1 please just quickly check through these lines of code and tell me if you see anything thats wrong The records in the dbase are uploaded with another php file, which does just that, no problem over therethis problem is given even if I upload the same file to the dbase, it's then supposed to not display anything on screen, cause all records exists allready, but it displays a whole lists of supposedly new records...?? Here is the code that's giving the problem: /*++ ++ + checking for new records, not yet in dbase... ++ */ $lines = file ('../includes/new1.csv'); foreach ($lines as $line_num => $line) { list($npr_nr,$npr_exvat,$npr_desc) = explode(",",$line); $npr_nr = trim($npr_nr, " "); $query = "SELECT product_id, product_nr from products"; $currentprs = mysql_query ($query, $db_connection) or die (mysql_error()); while (list ($currentprs_id, $currentprs_nr) = mysql_fetch_row ($currentprs)) { if ($npr_nr == $currentprs_nr) { mysql_query ("DELETE from tmpprods where product_nr = '$currentprs_nr'",$db_connection) or die (mysql_error()); } // end if } // end while } // end foreach /*++ ++ + Finish checking for new records, not yet in dbase... +++ */ Thanks again Adriaan "- Edwin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > "Adriaan Nel" <[EMAIL PROTECTED]> wrote: > > > Do any1 know how I can check for spaces here, > > and remove them if present > > http://www.php.net/manual/en/function.trim.php ? > http://www.php.net/manual/en/function.rtrim.php ? > http://www.php.net/manual/en/function.lrim.php ? > > - E > > __ > Do You Yahoo!? > Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Threading objects
As i rember apache can not handle a threading php ... if you whant threads you need to run php from command prompt in a linux/unix enviroment(windows dosen't support threads i I'm not wrong).Look for a threads project in PEAR(http://pear.php.net/). Hope it helps, Best regards, Alex. > Is it possible to some how thread a php script threw apache. There has > to be something you can do, it seems there is always something you can > do :) What I want is the following. > I administer a mailing list that has a few hundred thousand subscribed > recipients. > I've written a script that runs threw the DB and validates the email > address. > First by format then by connecting to the mail server. > This script takes way to long to run as it has to do one at a time. I > want to some how thread this so it can be validating multiple emails at > a time. > Please excuse my ignorance on the subject my web programming experience > is rather limited. > > Thanks > > Kris > > > > - Original Message - > From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> > To: "Kris" <[EMAIL PROTECTED]> > Cc: "W. Enserink" <[EMAIL PROTECTED]>; "PHP List" > <[EMAIL PROTECTED]> Sent: Thursday, March 13, 2003 1:04 AM > Subject: Re: [PHP] Threading objects > > >> > All I'm really asking is how do you initiate threading with PHP? A >> > small example would be nice >> >> You don't. This is a web scripting language, not Java. >> >> -Rasmus >> >> -- >> PHP General Mailing List (http://www.php.net/) >> To unsubscribe, visit: http://www.php.net/unsub.php >> >> > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Is there any reason...
That replies on this list go to the person who originally posted the message by default? It seems to me that the reply-to header should be set to the list, or is it not possible with the mailing list system this list uses? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] include dosn't after Provider-Change - I have it!
After the Tip: You can't execute PHP from an HTML page. My guess is that your old provider had PHP parsing enabled for .html files, shich most don't. Now I have created an .htaccess in the home-folder with: AddType application/x-httpd-php .php .php4 .html It works... Thanxs! Olly -Ursprüngliche Nachricht- Von: Oliver Witt [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 13. März 2003 10:03 An: [EMAIL PROTECTED] Betreff: [PHP] include dosn't after Provider-Change Hallo, after a Provider-Change my counter-script dosn't work again. My entry is: in an html-document. Is there an Error inside? My server show no error-messages... Thanx for Help. Olly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] PHP/HTML table layout?
This has absolutley nothing to do with PHP. I believe that it will stay if you set the width with CSS, but no promises. Bev wrote: Is there any simple way to stop the Cells of a Table from Moving, say for a simple table I want the first column to be always fixed at 100 pixels(col A) and the second to be fixed at 500(col B). Thing is though, I have specified pixels for each column BUT they still let me type on past the fixed amounts I specified. I wanted to fixed sized cells and that when I type do not increase/decrease the surronding cells.Can this be done? Bev -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] PHP/HTML table layout?
Is there any simple way to stop the Cells of a Table from Moving, say for a simple table I want the first column to be always fixed at 100 pixels(col A) and the second to be fixed at 500(col B). Thing is though, I have specified pixels for each column BUT they still let me type on past the fixed amounts I specified. I wanted to fixed sized cells and that when I type do not increase/decrease the surronding cells.Can this be done? Bev -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] Re: Your script possibly relies on a session side-effect which existed until PHP 4.2.3
LOL! :D -Original Message- From: Rudolf Visagie [mailto:[EMAIL PROTECTED] Sent: 13. maaliskuuta 2003 10:56 To: [EMAIL PROTECTED] Subject: RE: [PHP] Re: Your script possibly relies on a session side-effect which existed until PHP 4.2.3 I would have thought a genius would be able to spell geniuses. -Original Message- From: Justin French [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 2:46 AM To: chris; [EMAIL PROTECTED] Subject: Re: [PHP] Re: Your script possibly relies on a session side-effect which existed until PHP 4.2.3 on 13/03/03 11:23 AM, chris ([EMAIL PROTECTED]) wrote: > Now, if any other geniouses would like to help me (or any other > frustrated 4.3.1 users) figure out a solution for this vague error > message, don't follow Justin's very unhelpful footsteps. Well I'll certainly never make the mistake of attempting to help you again. People make mistakes. I sincerely apologise for ruining your whole day by not reading the rest of your thread. Shsh. Justin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php ### This message has been scanned by F-Secure Anti-Virus for Internet Mail. For more information, connect to http://www.F-Secure.com/ ### This message has been scanned by F-Secure Anti-Virus for Internet Mail. For more information, connect to http://www.F-Secure.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] Re: Your script possibly relies on a session side-effect which existed until PHP 4.2.3
I would have thought a genius would be able to spell geniuses. -Original Message- From: Justin French [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 2:46 AM To: chris; [EMAIL PROTECTED] Subject: Re: [PHP] Re: Your script possibly relies on a session side-effect which existed until PHP 4.2.3 on 13/03/03 11:23 AM, chris ([EMAIL PROTECTED]) wrote: > Now, if any other geniouses would like to help me (or any other frustrated > 4.3.1 users) figure out a solution for this vague error message, don't > follow Justin's very unhelpful footsteps. Well I'll certainly never make the mistake of attempting to help you again. People make mistakes. I sincerely apologise for ruining your whole day by not reading the rest of your thread. Shsh. Justin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] include dosn't after Provider-Change
You can't execute PHP from an HTML page. My guess is that your old provider had PHP parsing enabled for .html files, shich most don't. Oliver Witt wrote: Hallo, after a Provider-Change my counter-script dosn't work again. My entry is: in an html-document. Is there an Error inside? My server show no error-messages... Thanx for Help. Olly -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] removing appended chars - please help, quite urgent
Hi, "Adriaan Nel" <[EMAIL PROTECTED]> wrote: > Do any1 know how I can check for spaces here, > and remove them if present http://www.php.net/manual/en/function.trim.php ? http://www.php.net/manual/en/function.rtrim.php ? http://www.php.net/manual/en/function.lrim.php ? - E __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] include dosn't after Provider-Change
Hallo, after a Provider-Change my counter-script dosn't work again. My entry is: in an html-document. Is there an Error inside? My server show no error-messages... Thanx for Help. Olly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] removing appended chars - please help, quite urgent
At 09:59 13.03.2003, Adriaan Nel said: [snip] >I need to update records in a mysql dbase, from a .csv file, everything >works fine, but the index column, $npr_nr from below sometimes has a space >at the end, this causes the dbase index not to match this one, therefore >this record isn't updated. Do any1 know how I can check for spaces here, >and remove them if present [snip] have a look at trim() -- >O Ernest E. Vogelsinger (\)ICQ #13394035 ^ http://www.vogelsinger.at/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] removing appended chars - please help, quite urgent
Hi every1, I need to update records in a mysql dbase, from a .csv file, everything works fine, but the index column, $npr_nr from below sometimes has a space at the end, this causes the dbase index not to match this one, therefore this record isn't updated. Do any1 know how I can check for spaces here, and remove them if present Please help, this is quite urgent. Thanks Adriaan /*++ ++ + checking for new records, not yet in dbase... ++ */ $lines = file ('../includes/new1.csv'); foreach ($lines as $line_num => $line) { list($npr_nr,$npr_exvat,$npr_desc) = explode(",",$line); $query = "SELECT product_id, product_nr from products"; $currentprs = mysql_query ($query, $db_connection) or die (mysql_error()); while (list ($currentprs_id, $currentprs_nr) = mysql_fetch_row ($currentprs)) { if ($npr_nr == $currentprs_nr) { mysql_query ("DELETE from tmpprods where product_nr = '$currentprs_nr'",$db_connection) or die (mysql_error()); } // end if } // end while } // end foreach /*++ ++ + Finish checking for new records, not yet in dbase... +++ */ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Follow-up to Hacker problem
At 23:42 12.03.2003, Pag said: [snip] > Your tips were nice, guys, thanks a lot. I tried a few things and i >decided to go for making all the checks server side, cant go safer than that. > Just have a doubt on one of the checks, at least so far. > I have a check for long words, because the shoutbox is in a IFRAME, > so if >someone posted a long word, the infamous horizontal scroll bar would >appear. How can i check for long words on a string and remove them before >they get written on the DB? [snip] Check the archives - within the last 2 days there was a thread about breaking up long words to avoid inappropriate posts to clutter the page layout. -- >O Ernest E. Vogelsinger (\)ICQ #13394035 ^ http://www.vogelsinger.at/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Re user Identifying
My site uses shopping baskets to record what the user wants to but. These records are stored in a database against the user. This requires the user to register and log onto the site. Is it possible to avoid this by the use of cookies or some other method? Is it possible to use both methods in parallel. so that the user can choose either method. i.e. choose to register as a customer, or use the default id (perhaps via the cookie) and enter customer information at the time of placing the order? Any advice on the best way of doing this would be greatly appreciated. Regards Peter Goggin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Force refresh of graphic - how?
At 23:33 12.03.2003, Justin French said: [snip] >Put this code in your shared library of functions (adapted from manual, >untested): >function randNumber($min=1000,$max=9) >{ >// build a seed >list($usec, $sec) = explode(' ', microtime()); >$seed = (float) $sec + ((float) $usec * 10); > >// seed random generator >srand($seed); > >// return random number >return rand($min,$max); >} >?> [snip] May I? It's usually not a good idea to re-seed the randum number generator during a single script instance, as this might use the same seed more than once, resulting in the identical random sequence... To avoid reseeding, you could e.g. use a static variable in your randNumber() function: function randNumber($min=1000,$max=9) { static $is_seeded = false; if (!$is_seeded) { $is_seeded = true; // build a seed list($usec, $sec) = explode(' ', microtime()); $seed = (float) $sec + ((float) $usec * 10); // seed random generator srand($seed); } ... I prefer to add a string generated by uniqid(), such as uniqid() uses the entropy generated by the opsys random device (if available) in an attempt to make this truly random. -- >O Ernest E. Vogelsinger (\)ICQ #13394035 ^ http://www.vogelsinger.at/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] RE: what is session_name?
it is the name of cookie variable which stores the unique session ID string. suppose you set session.name to SESSID in php.ini then a cookie variable named SESSID will be sent to client in which session ID string will be stored by client browser. If URL is used to propogate session variable then this is the name of GET variable which stores session ID string. e.g.: SESSID="sess_ab80d8a12221d9bf03f4e830c7e4fb74" The value of this cookie variable (unique session ID string) is used to restore related session variables in the called script. regards, -Original Message- From: Joseph Bannon [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 10:29 To: [EMAIL PROTECTED] Subject: what is session_name? I read the description on php.net, but what is session_name really used for? Thanks, Joe. __ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] php errors while displaying database fields
At 23:30 12.03.2003, Boulytchev, Vasiliy said: [snip] >I have searched the archives, and have found nothing on these errors >I am getting. Here is the apache error logs capture: > >PHP Notice: Undefined index: REMOTE_ADDR in >/home/www/customflagcompany/phpshop/modules/admin/lib/ps_session.inc on >line 39 >PHP Notice: Undefined variable: page in >/home/www/customflagcompany/phpshop/bin/index.php3 on line 53 [snip] These are notices only, not errors (notices being the least severe level of issues PHP may warn you about). You may adjust the error reporting level with the error_reporting() function, or the corresponding setting in the php.ini file. "Undefined index": this means that the associative array doesn't have an index field with a particular name defined. PHP will return null in this case. Workaround: if (array_key_exists('REMOTE_ADDR'))... "Undefined variable": the variable you're using has not been defined and never been assigned to. PHP will return null in this case. Workaround: if (isset($page))... -- >O Ernest E. Vogelsinger (\)ICQ #13394035 ^ http://www.vogelsinger.at/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] how to force a refresh?
Or, just: ...if the same page. Note: "1" is the number of seconds... - E __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] session variables
Hi, Is it wise or wrong to put long strings into a session variable ? Is it better to keep the values short ? Thanks Shaun -- Novtel Consulting Tel: +27 21 9822373 Fax: +27 21 9815846 Please visit our website: www.novtel.co.za -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] how to force a refresh?
> There is an HTML solution, but I can't remember offhand what it > is. http://where2go.after"; /> ? - E __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php