PravinS
Members-
Posts
459 -
Joined
-
Last visited
-
Days Won
2
Everything posted by PravinS
-
search this line while($linhaRetorno == mysql_fetch_array($qrRetorno)) you have used "==" instead of "="
-
try using this div.scroll { width:405px; max-height:550px; overflow-y:auto; overflow-x:hidden; } it will work as, its maximum height is 550 and after that vertical scroll bar will come
-
try using GROUP BY clause like this SELECT course.courseTitle, COUNT(DISTINCT student.sex) FROM course, student WHERE student.sex = 'f' GROUP BY course.courseTitle
-
just add <br> tag in between
-
check this http://www.php-guru.in/2013/import-csv-data-to-mysql-using-php/
-
use MySQL replace function in query like this UPDATE Pic SET Place_id = REPLACE(Place_id, '#', '') also do take table backup before doing mass update
-
try using this function function sort_array($array, $key, $order) { if ($order=="DESC") $or="arsort"; else $or="asort"; for ($i = 0; $i < sizeof($array); $i++) { $sort_values[$i] = $array[$i][$key]; } $or($sort_values); reset ($sort_values); while (list ($arr_key, $arr_val) = each ($sort_values)) { $sorted_arr[] = $array[$arr_key]; } return $sorted_arr; }
-
if you are not going to reload the page then you can use meta refresh tag in iframe source page
-
Try replacing while loop using below code $i = 1; echo '<tr>'; while($row = $ret->fetchArray(SQLITE3_ASSOC) ) { echo '<td>' .$row['Domain'].'</td><td><input type="checkbox" name="a[]" value="n"></td>'; if ($i % 5 == 0) echo '</tr><tr>'; $i++; } echo '</tr>';
-
Check codeigniter http://ellislab.com/codeigniter User guide http://ellislab.com/codeigniter/user-guide/
-
"Sorry, no new content found" for View New Content
PravinS replied to PravinS's topic in PHPFreaks.com Website Feedback
Thanks for your reply -
try using utf8_decode() function
-
if you want to send mails to more than 100 emails ids then your mail code should be in while loop
-
its correct
-
have u retarted the apache server after doing changes in php.ini file
-
you can use TCPDF php library using TCPDF library you can directly create PDF of HTML
-
what is your logout.php page script, you may have used session_destroy(), it will destroy all your registered sessions instead of session_destroy() use Unset()