Re: [PHP] Cpanel or Plesk

2003-09-07 Thread Jeanne Pelletier
You will find infomation about the pros and cons of each (and probably an answer to your question about moving accounts) at Rackshack's hosting forums and Cpanel's support forums http://forums.rackshack.net http://forums.cpanel.net Jeanne Oscar F wrote: > I've used both and personally, I like C

Re: [PHP] update two frames at once?-Revised

2001-03-14 Thread Jeanne Pelletier
itpers"); while (list($key,$value)=each($HTTP_GET_VARS)){ reset($varlist); if (in_array($key,$varlist)){ $key=trim($key); $value=trim($value); $vars[]="$key=$value"; } } while (list($junk,$val)=each($vars)) { } $queryvars=implode($vars,"&"); return $queryva

Re: [PHP] update two frames at once?

2001-03-14 Thread Jeanne Pelletier
Here's what works for me-- You might adapt this to work on your frames. on the frameset page--index.php ---I put the following: Then in the frameset I make the url of mainFrame the value of $framepage Then your links are coded like so: Maybe not the most elegant solution, but it wo