Jump to content

ok

Members
  • Posts

    130
  • Joined

  • Last visited

    Never

Everything posted by ok

  1. i'm afraid you've mistaken me for someone who knows you. I really want to reveal my old user name, but i like it this way nobody knows me anymore, it's a new image. GingerRobot i have a strong feeling are you steelman?
  2. it's an algorithm right? I guess i already encountered the fish and bison. I dunno where, i forgot. it's php related. akitchin you know me i only changed my user name.
  3. Here is another additional. A good programmer think or imagine his project even at rest or even while he is in relax mode. Because they say our imagination works much properly while we are at rest or relax. What can you say guys?
  4. I understand you Mchl By the way here is another addition to this thread. A good programmer don't stare on the keyboard while typing. A good programmer understand that studying programming is a non-stop commitment until he die.
  5. that means you are not a good programmer just my point of view also. don't be offended but i'm not also a good programmer right now. just trying to be. and just trying to follow the standards.
  6. yes but all i know there are more programmer that don't practice SOFTWARE ENGINEERING. some just code but don't really implement software engineering practice. some use php but don't use this technique. just to refresh our memories.
  7. This thread is all about being a good programmer. I don't think this is pointless? Are you a good programmer? Do you have all the characteristic of a good programmer? Just my opinion.
  8. Just for valuable addition to this thread. A GOOD PROGRAMMER has these ULTIMATE knowledge below, A good programmer knows SYSTEM ANALYSIS DESIGN. And Finally A GOOD PROGRAMMER understood, practice, implement SOFTWARE ENGINEERING... Thank you.
  9. thanks i know that but i don't like print_r()
  10. Hi i want to email the content of an array. It has more than 100 values in it. Can you show me the simple and easy way to do this. Thank you.
  11. In the table i found out there are duplicate names, I want to remove the duplicate anmes and retain only one name. Can you show me simple mysql query for this. thank you.
  12. no need i already solved this. thanks to you all
  13. It is just a simple form. and the 2nd file .php to capture the data. ... " . $_POST['Sep29a'] . " " . $_POST[''] . " " . $_POST[''] . " ...
  14. i tried to remove the $ sign and still did not work after i press the submit button.
  15. can you see the problem with this codes below? <select name="Sep29a" size="1" class="style41" id="Sep29a" style="border-style:solid; border-width:1; font-size:11"> <option selected value="0">_</option> <option value="3/$150">3 Day</option> <option value="4/$175">4 Day</option> <option value="5/$200">5 Day</option> </select> the codes above don't work, could not it be the $ sign causing the problem? for example --> <option value="3/$150">3 Day</option> thank you.
  16. ok

    My new car.

    Nice car. just don't drive while you are drunk. By the way is that the result of being a PHP geek?
  17. Sinikka the most decisive solution for this is to contact your web hosting company. Different hosting company provide different settings for this matter.
  18. thank you in advance. these codes below took tooooo long to load, <?php //0000-00-00 00:00:00 //Fill invited_by column in USERS table. include 'opendb.php'; //get all unique invited_by $query = "SELECT DISTINCT invited_by FROM users WHERE invited_by!='' ORDER BY invited_by ASC"; $result=mysql_query($query) or die("Problem with the query: $query on line " . __LINE__ . '<br>' . mysql_error()); $i=0; while($row = mysql_fetch_array($result)) { $referer[$i] = $row['invited_by']; #echo "<b>referer: </b>". $referer[$i]; #echo "<br>"; $i++; } if(!empty($referer)) { $i=0; $j++; $c=count($referer); while($i<$c) { $query = "SELECT * FROM users WHERE user_name='$referer[$j]' ORDER BY user_name ASC"; $result=mysql_query($query) or die("Problem with the query: $query on line " . __LINE__ . '<br>' . mysql_error()); $i=0; while($row = mysql_fetch_array($result)) { $user_name = $row['user_name']; $email = $row['email']; echo "{$user_name} ". $email; echo "\n"; $i++; } $j++; } } include 'closedb.php'; ?> can you tell me what's causing the problem? note: i tested the other codes and it works fine, the mere problem is the codes above. thank you.
  19. redarrow that is a very basic question what's wrong with you? You have 6++ posts already. ?
  20. how do i know if an array variblae i sempty? is there a built in function for determining empty array. thank you in advance.
×
×
  • 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.