User Profile

Collapse

Profile Sidebar

Collapse
gurumoorthi
gurumoorthi
Last Activity: Jan 24 '14, 06:06 AM
Joined: Jan 10 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • gurumoorthi
    replied to Differ between Truncate And Delete
    Delete:
    delete only rows and space allocated by mysql
    data can be roll backed again
    it can be used with WHERE clause
    Syntax:
    Code:
    DELETE TABLE table_name (for delete whole table)
    DELETE TABLE table_name WHERE column_name=condition (for delete particular row)
    Truncate:
    delete rows and space allocated by mysql
    data cannot be roll backed again
    it cann't be used with WHERE clause...
    See more | Go to post
    Last edited by Niheel; Jan 11 '14, 06:10 AM. Reason: Please don't post to promote your website. This is the second account to promote the same website.

    Leave a comment:


  • your html link:
    Code:
    <a href="www.example.com/item/harddisk">Hard disk</a>
    Your .htaccess
    Code:
    RewriteRule ^item/(.*)$ products.php?name=$1
    Your products.php
    Code:
    $name=$_GET['name']
    See more | Go to post

    Leave a comment:


  • gurumoorthi
    replied to Hide Url
    in PHP
    your html link:
    Code:
    <a href="www.example.com/item/harddisk">Hard disk</a>
    Your .htaccess
    Code:
    RewriteRule ^item/(.*)$ products.php?name=$1
    Your products.php
    Code:
    $name=$_GET['name']
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...