
Gaia
Members-
Posts
95 -
Joined
-
Last visited
Never
About Gaia
- Birthday 03/26/1987
Contact Methods
-
AIM
spectralgurl
-
MSN
unstablefears@hotmail.com
-
Website URL
http://eternal-realm.net
-
Yahoo
mel_gurl2
Profile Information
-
Gender
Female
-
Location
Canada
Gaia's Achievements

Member (2/5)
0
Reputation
-
Nice to see surpasshosting.com on the list. They are an amazing company.
-
For Windows I use SmartFTP, great program. For my Mac I use Cyberduck. Has been working so far without any difficulties.
-
Not sure if i already posted in this topic or not, but I use PHP Designer 2006.
-
[!--quoteo(post=327916:date=Dec 16 2005, 12:03 PM:name=ober)--][div class=\'quotetop\']QUOTE(ober @ Dec 16 2005, 12:03 PM) 327916[/snapback][/div][div class=\'quotemain\'][!--quotec--] And I must say that I'm impressed with your work for only being 18. I've always said there are some truly talented female programmers out there (I went to college with a few), and you've just proven my point again. Thanks Ober, now only if my instructers thought the same thing lol
-
Ok that tells us what you are trying to accomplish, but what is the problem and where do you need help in making it happen?
-
Try defining the class variable. [code] <?php class foo { var $menu = array( "home"=>"Home" ); final function __construct() { print($menu["home"]); } } ?> [/code] If that doesn't work, which i'm not sure if it will or not because i've never used an array with var try declaring it as a global. [code] <?php $menu = array( "home"=>"Home" ); class foo { final function __construct() { global $menu; print($menu["home"]); } } ?> [/code]
-
No problem, glad to be of service :p ^_^
-
That would work, i'm not sure if this will help, but try looking up .htaccess commands.
-
If it's a session then wouldn't it be $_SESSION['email'] ?
-
It's a guestbook script and i mentioned in my earlier post that if you wanted to install it to check you can click the VortexBook link in my signature...there is no way I can post all of the script here. So no one has run by this error before and figured out what the problem was or what might of caused it? Thanks.
-
Sorry there isn't any code, i said that it was a script that I made that was creating the error....if you want to download it and install it yourself to check you can click the VortexBook link in my signature, other then that I don't have anything else to give. I just would like to know what [i]might[/i] cause an error like that. Thanks.
-
Hi, I created a script ( VortexBook ) and it seems to work fine, but someone is getting the following error and it's the first that i've heard of it. “failure to open stream, connection refused error” I was just wondering what could cause that and if it's a problem with the script that I need to fix or something wrong with the server.. Thanks.
-
You can't at this point, the solve button isn't added back in yet.
-
You would have to make a row in your MySQL table called ID ( doesn't have to be ID, but something similiar ) and choose the option auto increment. It will then automtically increment that field when you insert information.