Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #20.4K
Ranked #4K
~27.9K People Reached
Favorite Tags

10 Posted Topics

Member Avatar for Member #848229
Member Avatar for dudegio

Hey you don't need to worry about this problem Just after the </html> code write this code ob_end_flush(); if you have used header('location:...'); Better user ob_start while using header tag and ob_end_flush after header('location:..')

Member Avatar for nicheteam
0
14K
Member Avatar for Aruna R

while using the mysql_fetch_array('query here'); you dont need to know the field name in advance .But if you use mysql_fetch_assoc('query here'); you must know the field name in advance. exampe:[CODE]$rows = mysql_fetch_array( "select name, address from people"); Means you then get each of the row results as a straight array, …

Member Avatar for guruparthi
0
7K
Member Avatar for coolest_987

This is one of the way to promote your site . Try blogging , make links and first basic seo necessities

Member Avatar for adam70
0
285
Member Avatar for heshanm

User die() instead of mysql_query, run that query in sql in phpmyadmin and find the error , its better to find the error than solution.

Member Avatar for heshanm
0
188
Member Avatar for cliffcc

for(){ if (condition) { $errors[] = 'something.'; } } echo implode('<br/>',$errors); $errors contains multiple data or indexed value if you want to show that error in a next line then user implode. hope u understand

Member Avatar for cliffcc
0
402
Member Avatar for lalaka90

if(isset($_POST['deleteme'])){ $count = count($_POST['multiple']); $data = $_POST['multiple']; for($i=0;$i<$count;$i++){ $id = $data[$i]; mysql_query('delete from multiple where id='.$id); } } <td><input type="checkbox" name="multiple[]" value="<?php echo $result['id']; ?>"/></td>

Member Avatar for karthik_ppts
0
217
Member Avatar for uselessninja
Member Avatar for uselessninja
0
123
Member Avatar for miss_indie

Using jquery: [CODE]$(":checkbox").each(function() { if($(this).val() === "") alert("Empty Fields!!"); }); [/CODE]

Member Avatar for rajeevbu
0
2K
Member Avatar for extemer

[CODE]function get_real_ip_addr(){ if (!empty($_SERVER['HTTP_CLIENT_IP'])){ //check ip from share internet $ip=$_SERVER['HTTP_CLIENT_IP']; } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])){ //to check ip is pass from proxy $ip=$_SERVER['HTTP_X_FORWARDED_FOR']; } else{ $ip=$_SERVER['REMOTE_ADDR']; } return $ip; }[/CODE]

Member Avatar for anandgodar
0
696

The End.