Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~10K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for muktapuram

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 …

Member Avatar for aiswarya_2
0
3K
Member Avatar for sasankasekhar2003

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 …

Member Avatar for overwraith
0
195
Member Avatar for Indians

<?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 …

Member Avatar for Lsmjudoka
0
6K

The End.