On Wednesday 28 June 2006 19:55, Chris wrote:
> Russbucket wrote:
> > I took an example of a script from the PHP documentation and try to
> > connect to my database. If I leave in the or die part of line 3, I get
> > nothing, if I comment out that part I get the echo message on line 4.
> >
> >
On Wed, June 28, 2006 6:58 pm, Russbucket wrote:
> I took an example of a script from the PHP documentation and try to
> connect
> to my database. If I leave in the or die part of line 3, I get
> nothing, if
> I comment out that part I get the echo message on line 4.
>
> // Connecting and selec
On Thursday 29 June 2006 06:29, Jeremy Schreckhise wrote:
> Try
> $link = mysql_connect('localhost',$youruser,$yourpassword) or die();
> mysql_select_db('yourdb');
>
> $query = 'SELECT * FROM Moses_Lake_Lions';
> if(!$result = mysql_query ($query,$link))
> {
>
Try
$link = mysql_connect('localhost',$youruser,$yourpassword) or die();
mysql_select_db('yourdb');
$query = 'SELECT * FROM Moses_Lake_Lions';
if(!$result = mysql_query ($query,$link))
{
// do error checking here
}
Jeremy Schreckhis
On 29/06/06, Chris <[EMAIL PROTECTED]> wrote:
Russbucket wrote:
> I took an example of a script from the PHP documentation and try to
connect
> to my database. If I leave in the or die part of line 3, I get
nothing, if
> I comment out that part I get the echo message on line 4.
>
> // Connec
Russbucket wrote:
I took an example of a script from the PHP documentation and try to connect
to my database. If I leave in the or die part of line 3, I get nothing, if
I comment out that part I get the echo message on line 4.
$conn = mysql_connect ('localhost', 'finemanruss', 'XXXl')
Russbucket wrote:
I took an example of a script from the PHP documentation and try to connect
to my database. If I leave in the or die part of line 3, I get nothing, if
I comment out that part I get the echo message on line 4.
$conn = mysql_connect ('localhost', 'finemanruss', 'XXXl')
7 matches
Mail list logo