Jump to content

LordOrange

Members
  • Posts

    31
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

LordOrange's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Im running on Windows XP so wat can I do about it?
  2. I have been using a local offline webserver for a while to do web development. A few weeks ago I ran into a problem where I needed to add some extensions. So I reinstalled PHP including the extensions I nedded in the install. After that I couldnt acces any files through my server. I restarted my machine but it made no difference. So i reinstalled my server. I can now access html files but php serves files with no source orany text what so ever. All I get is a blank page with a blank source. Does any one know why its doing this and how I can fix it?
  3. Thanks. Noticed that. I think the problems with the program and not with my MySQL. Thanks for all you help
  4. DreamCoder is a database manager and the script I have tried (already shown in code tags) does not return any error messages but does nothing at all.
  5. Unfortunately all the code for these run in the background and are unaccecible but when I tried to run an update script (mysql_query("UPDATE calendar ('date','event','details') VALUES ('23','event1','something is happening')") I get no errors but nothing happens.
  6. There two different ones: Update failed. Found 0 records and 1064 #42000You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 4 DreamCoder sends these in a pop up box.
  7. I'm running an offline web server on my machine and for the past year or so it's been working fine. I've been using a program called DreamCoder to manage my database. Recently it has started giving me errors when ever I try to edit information in the database. I can't find any obvious reasons. Please can some one help me.
  8. thanks that looks like it could be helpful. I think you missunderstood me little though though. I'm not really a noob here but rather just very informaly educated in terms of PHP. What I'm looking for is a way to add a page for each new set of content submitted to a gallery script I'm writing. Right now I'm managing the site so when i add a new gallery I can just create the page in Notepad or PSpad etc. but if I need to hand it over to some one less computer literate it needs to be an easy to use form.
  9. Sorry if this is completely noob but I'm trying to find a function that allows you to write/edit webpages in their source code. I've tried looking around but with little success. I also tried reverse engeniering Joomla but also with no success. Please can some one help me.
  10. One of the scripts I'm trying to run requires the GD extention for php but i can't seem t find it anywhere. A lot of the information I have read says that it should come with php and I can find the extention line for it in my php.ini file but the dll file itself if no where to be seen. Does anyone know where I can get hold of this file??
  11. Can't connect to MySQL server on 'localhost' (10061) <?php echo "Welcome ".$_POST['name'].". You have been giving off carbon dioxide for ".$_POST['age']." years."; $con = mysql_connect("localhost","root","orange") or die(mysql_error()); echo "Test"; mysql_select_db("mysql", $con) or die(mysql_error()); $result = mysql_query("SELECT * FROM info"); while($row = mysql_fetch_array($result)) { echo "123 <br>"; echo $row['name']." ".$row['age']; echo "<br>"; } mysql_close($con); ?> The error didn't give a line but I'm pretty sure it's on the connect line (line 4)
  12. It's working now.... don't now why or what I did to fix it but It still gives me an error not allowing me to connect the database..... My configuration settings in the php.ini file are definately correct now
  13. nothing was showing what so ever.... it's working now though... hav eno idea why it is now and wasn't just now
  14. runnin MySQL, Windows XP I also reinstalled PHP including the extension (remembered I hadn't) and found all the line you said I needed and it diidn't work
  15. I had this posted earlier but it disapeared.... I'm looking ofr help on my settup for MySQL in the PHP ini file. I'm running a local server (Appache). In the last topic I got up to including the extension lines in the PHP ini file but when I configuered it, all PHP stopped working. (only MySQL functions didn';t work before). If you can help I'm really getting annoyed with this problem now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.