Jump to content

Search the Community

Showing results for tags 'same values'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 1 result

  1. I have made a html form and use the post method to redirect in the same page. 1) Now the problem is every time someone adds something and press refresh the vales are inserted again. cna there be any method by which it is not inserted again the code <?php if(isset($_POST['add_skills'],$_POST['skills']) && !empty($_POST['add_skills'])) { $row=$_POST['add_skills']; $edit=mysql_query("some insert query") or die("unable to insert"); if($edit) { echo "OK"; unset($_POST['add_skills'],$_POST['skills']); } } ?> <body> <form name="form1" action="<?php $_SERVER['PHP_SELF']; ?>" method="post" > <div align="center"> <div align="left"> <div align="left"><p>Add Skill</p></div> <div><input type="text" id="add_skills" name="add_skills" placeholder="Add Skill" /></div> </div> <div align="left"> <div></div> <div><input type="submit" name="skills" name="skills" value="Add" /></div> </div> </div> </form>
×
×
  • 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.