mod rewrite change php to htm
Saturday, August 18th, 2007 Posted in PHP, mod_rewrite | No Comments »Options +Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^(.*)\.htm$ $1.php [L] If you change your pages from htm (or html) to php and want to maintain links particularly from Google then you can place the code above in your .htaccess file in the root ...
PHP Get last inserted ID from mysql
Saturday, August 18th, 2007 Posted in MYSQL, PHP | 1 Comment »$id = mysql_insert_id(); Each person on the website has a different session so if you use the above, it will automatically know which row was inserted last with this session. You do not need to worry about 2 people being on ...