Jump to content

Recommended Posts

Hallo !

 

I have 2 files one called admin.php and the other edit.php

 

So.. in admin file i have this html code :

 

<a href="edit.php" id="hmtext" class="nav">Home Text</a>

 

and in edit.php this code :

 

<?php

ini_set ('display_errors',1);
error_reporting (E_ALL);

include 'dbConf.php';


$connect = mysql_connect($host,$username,$password) or die("Error connecting to Database! " . mysql_error());

mysql_select_db($database , $connect) or die("Cannot select database! " . mysql_error());

$query = "SELECT title,text FROM fronttext";
$q = mysql_query($query);

$row = mysql_fetch_array($q);

print "

<div id=\"frontTexForm\">
<form method= \"post\" action=\"homeTextForm.php\">

<label><font color=\"#99FF00\" >HOME TEXT</font></label>
<br /><br /><br />

<label><font color=\"#99FF00\" >Title : </font></label>
<br />

<input type=\"text\" size=\"70\" maxlength=\"100\" name=\"title\" value=\"".htmlentities($row['title'])."\" />
<br /><br />

<label><font color=\"#99FF00\" >Text : </font></label>
<br />

<textarea cols=\"53\" rows=\"15\" name=\"text\">".htmlentities($row['text'])."</textarea>
<br/><br/>

<input type=\"submit\" value=\"Αποθήκευση\" name=\"save\">



</form>
</div>

";






mysql_close();



?>

 

 

So i click the link from admin.php and then the browser returns to me

 

this error :

 

The connection was reset

 

     

 

     

     

     

 

     

       

       

 

         

 

The connection to the server was reset while the page was loading.

 

       

 

 

       

       

 

 

    *  The site could be temporarily unavailable or too busy. Try again in a few

          moments.

 

    *  If you are unable to load any pages, check your computer's network

          connection.

 

    *  If your computer or network is protected by a firewall or proxy, make sure

          that Firefox is permitted to access the Web.

 

Why this happens ?

 

Have you any idea ?

 

The query was executed but i can't print out the results...

 

Thanks a lot!

 

Link to comment
https://forums.phpfreaks.com/topic/205169-the-connection-was-reset-problem/
Share on other sites

As I remember from php tutorial to connect from a PHP script, just put this in your file:

<?
     mysql_connect("DBSERVER", "DBUSERNAME", "DBPASSWORD");
     mysql_select_db("DBNAME");
     ?>

    using the following substitutions for the bold terms as above, plus substituting DBPASSWORD with your own mysql password:

 

        * Replace DBSERVER with the correct database servername for your site.

        * Replace DBUSERNAME with your own mysql username.

        * Replace DBNAME with your own mysql databasename.

 

    The connection will be closed automatically when the script ends. To close the connection before, use the mysql_close() function:

<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
   {
   die('Could not connect: ' . mysql_error());
   }
// some code
mysql_close($con);
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.