Jump to content

voip03

Members
  • Posts

    693
  • Joined

  • Last visited

Everything posted by voip03

  1. You want to upload the image and display in different page
  2. You need to check 1. submit button is there? 2 form action ? 3. inputs name and $_POST 4. session in insert query , why? 5. it would be helpfull , if you post registered code
  3. Try to echo $row['boat'] in different place, so you will know the value. $row['boat'] < 1
  4. After this code echo "<span style='color: green;'>Your file was successfully uploaded!</span>"; Add new code echo "<span style='color: green;'>Your file was successfully uploaded!</span>"; echo "<img src='$uploaddir.$file_name' />"; http://www.tizag.com/htmlT/htmlimagelinks.php
  5. voip03

    Drawing a line

    I am sorry, typing error.
  6. function getMyTimeDiff($t1,$t2) { $a1 = explode(":",$t1); $a2 = explode(":",$t2); $time1 = (($a1[0]*60*60)+($a1[1]*60)+($a1[2])); $time2 = (($a2[0]*60*60)+($a2[1]*60)+($a2[2])); $diff = abs($time1-$time2); $hours = floor($diff/(60*60)); $mins = floor(($diff-($hours*60*60))/(60)); $secs = floor(($diff-(($hours*60*60)+($mins*60)))); $result = $hours.":".$mins.":".$secs; return $result; } $mytime1 = "10:05:08"; $mytime2 = "21:22:54"; echo $cool = getMyTimeDiff($mytime1,$mytime2); you should get the general idea from it
  7. voip03

    Drawing a line

    thank u cssfreakie. no line at all?
  8. voip03

    Drawing a line

    I would like to draw a line next to g( small letter ), am I able to use CSS to draw a line . ( enclosing a image ) Thank you [attachment deleted by admin]
  9. worthless post by WebStyles. Coolness! worthless post by AyKay47, about a worthless post by WebStyles. Coolness! the chain can go on forever. If all the posters posted all the time. It could be an infinite loop! Shall we
  10. what is the variable value? $r_in Why in input tag name attribute empty? <input type="text" name="" value="'.$number1.'" style="width:169px" readonly="readonly" class="text_non_color"/></td>
  11. Basic Pagination http://www.phpfreaks.com/tutorial/basic-pagination
  12. This link will help you http://www.sitepoint.com/ajax-jquery/ http://net.tutsplus.com/tutorials/javascript-ajax/submit-a-form-without-page-refresh-using-jquery/ http://www.php-learn-it.com/tutorials/starting_with_php_and_ajax.html read this post http://www.phpfreaks.com/forums/index.php?topic=343063.msg1618454#msg1618454
  13. Can you create new db and try?
  14. Without leaving the current page, you want to show total number, once user click likes. You need ajax
  15. What is the value for $number1 $number1=?
×
×
  • 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.