Jump to content

MySQL Insert


Jezza

Recommended Posts

When I Insert in MySQL i want to grab the ID it auto assigns, take this for example

<?
$qry = mysql_query("INSERT INTO `Cars` (
`ID`,`Make`,`Model`
)
VALUES (
NULL,'$_POST[Make]','$_POST[Model]'
);
");
echo "Car ID is _____";
?>

How do i find out the car ID the MySQL database assigned?

Link to comment
Share on other sites

When I Insert in MySQL i want to grab the ID it auto assigns, take this for example

<?
$qry = mysql_query("INSERT INTO `Cars` (
`ID`,`Make`,`Model`
)
VALUES (
NULL,'$_POST[Make]','$_POST[Model]'
);
");
echo "Car ID is _____";
?>

How do i find out the car ID the MySQL database assigned?

This should return the last entered ID:

<?php
$qry = mysql_query("INSERT INTO `Cars` (`ID`,`Make`,`Model`) VALUES (NULL,'$_POST[Make]','$_POST[Model]');");
echo "Car ID is " . mysql_insert_id();
?>

 

Note you should never use short tags (<?) in PHP. It is widely disallowed and not compatable.

 

EDIT: You should use mysql_real_escape_string on your query to disallow SQL injection..

Link to comment
Share on other sites

When I Insert in MySQL i want to grab the ID it auto assigns, take this for example

<?
$qry = mysql_query("INSERT INTO `Cars` (
`ID`,`Make`,`Model`
)
VALUES (
NULL,'$_POST[Make]','$_POST[Model]'
);
");
echo "Car ID is _____";
?>

How do i find out the car ID the MySQL database assigned?

This should return the last entered ID:

<?php
$qry = mysql_query("INSERT INTO `Cars` (`ID`,`Make`,`Model`) VALUES (NULL,'$_POST[Make]','$_POST[Model]');");
echo "Car ID is " . mysql_insert_id();
?>

 

Note you should never use short tags (<?) in PHP. It is widely disallowed and not compatable.

 

EDIT: You should use mysql_real_escape_string on your query to disallow SQL injection..

 

Oh I didn't know it was that simple haha, thanks. Why are <? disallowed and not compatible? I have always used it on my websites and had no problems.

Link to comment
Share on other sites

http://www.php.net/manual/en/language.basic-syntax.phpmode.php

 

Note: Using short tags should be avoided when developing applications or libraries that are meant for redistribution, or deployment on PHP servers which are not under your control, because short tags may not be supported on the target server. For portable, redistributable code, be sure not to use short tags.
Link to comment
Share on other sites

http://www.php.net/manual/en/language.basic-syntax.phpmode.php

 

Note: Using short tags should be avoided when developing applications or libraries that are meant for redistribution, or deployment on PHP servers which are not under your control, because short tags may not be supported on the target server. For portable, redistributable code, be sure not to use short tags.

 

Oh i'm fine then, thanks heaps

Link to comment
Share on other sites

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.