No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Your code seems ok. You can try the following: * Open your **php.ini** file. * Make a backup of that file. * Find the term "post_max_size" > Change this value to something higher (than the file you are uploading) * Find the term "upload_max_filesize" > Change this value to something …
I am in the process of developing a web application with a "question - answer" session in PHP and MySQL. This is more like a forum, where the user asks questions and a dedicated expert answers the questions. I am trying to implement the following feature: * When a user …
<?php if (isset($_POST['submit_val'])){ $values =""; foreach ( $_POST['slno'] as $key=>$slno ){ $date = $_POST['date'][$key]; $particulars = $_POST['particulars'][$key]; $c_date = mysql_real_escape_string($date); $c_slno = mysql_real_escape_string($slno); $values .= "('".$c_slno."','".$c_date."'),"; } $values = substr($values,0, strlen($values)-1); // This will remove the last comma in the values string //echo "INSERT INTO ebvouchertariffs ( TariffSlNo, TariffDate) VALUES …
The End.
sasankasekhar2003