| guest's SuperSloper start page |
|
Site Log Fixed the stock quotes. They used to pull from MSN now coming from Yahoo. Sorry no tabbing need to fix this for code and use PHP's highlight_string function. $furl=fopen("http://quote.yahoo.com/d/quotes.csv?s=$stocks&f=sl1d1t1c1ohgv&e=.csv",'r'); $stock_info = fread($furl,200000); $stock_info = str_replace('"','',$stock_info); $stock_info = explode("\r\n",$stock_info); foreach($stock_info as $value) { $stocks = explode(",",$value); $stock_name = $stocks[0]; $days_close = $stocks[1]; $days_change = $stocks[4]; $days_low = $stocks[5]; $days_high = $stocks[6]; } 2005-02-10 16:41:21 Member list is now available In the upper left there is now a link to the members. This displays some of their information as well as the username. I will enhance this feature later allowing you to view their profile and journal entries if they have them marked for public viewing. 2003-12-09 15:58:09 You may now select which modules you would like active. Currently there are only 3. The journal, which will always be displayed, and the stocks and links modules. 2003-12-09 15:59:02 Profile page has been implemented. When logged in you will see a link in the upper left of the page to go to your profile. Currently only have, webpage, location and style's available. And only style is currently in use on the site. More profile customizations coming in the future. 2003-12-09 15:59:25 Added the "remember me" feature when logging in. When you login you can now select the check box to have the site remember you and keep you logged in even when you close your browser window. This will expire 30 days from your last visit or if you click the "logout" link. 2003-10-24 16:29:54 | ||||