Jump to content

topcodedeveloper

New Members
  • Posts

    5
  • Joined

  • Last visited

topcodedeveloper's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I will admit I was a little butt hurt, with the remark made, so yes I may have been a little harsh my self in responding to the thread. Considering You may not know me, nor I know you, how can you judge one person just based on fact, with out all the evidence in front of you. I assure you that my attentions are good, in fact I've tried contacting the sites owner, finding out their online form has a SQL error, so I've tried contacting them via local email instead, and not heard from them yet. I was simple trying to reach out for some assistance, but it seems that I may have came to the wrong place. And as for capturing your IP address and location I'm able to pull this information from my server. So again, how quick one is to judge. And!! as for coding I'm sure you may not no every language there is in coding, When I stated I've been struggling with this issue for the past six months, I should of mentioned that I also have a full time job, and only do this on the side, in which doesn't give me much time. So with that said, I'll apologizes, for my action and with draw my account from the site and just move along. Thanks any way for all your help..
  2. Wow, that's not quite the answer i was looking for, i would expect a more professional answer. Now I remember why I don't user these type site's oh and by the way you might want to change your profile pic, you resemble one one of inmates were I happen to work. Thanks for the help!!!! OH Just an FYI, don't matter to me if you decide to band my from this site, it would just show me how UN professional you are. Virgin Media IP (82.8.81.100) Bournemouth, United Kingdom
  3. ok, I've been struggling with this topic for about 6 months now, this is something I just can't seem to grasp; I've been trying to scrap content from this site: http://www.trulos.com/Trulos/Post-Truck-Loads/free-truckload-board.aspx?STATE=AL&Equipment=Reefer to add to my own load board, I seem to be stuck, I've tried just about every task: but this site seem to not have class id's just simple <td> and tables, could someone help me out, and maybe provide an sample I'm trying to scrap the loads that they have posted, 7/24/2013 Montgomery AL Robert LA Full 53 Reefer 0.00 21 0 Dispatch (800) 580-3101 Map 7/24/2013 Montgomery AL Birmingham AL Full 48 Reefer 0.00 40 1 Dispatch (800) 580-3101 Map Then I want to add it to my sql database that would show in my site: http://www.loadsready.com/ any help would be greatly appreciated.
  4. Here's another way to have it loop through an array: <?php header('Refresh: 5'); $setup=array("2013:09:27 07:52:00 am", "2013:09:27 07:53:00 am"); $arrlength=count($setup); $timeis=date('Y:m:d h:i:s a', time()); $timem=date('Y:m:d'); echo $timeis; $timer=date('Y:m:d h:i:s a', time()); for($x=0;$x<$arrlength;$x++) $mytimer=$setup[$x]; if ($timer>=$mytimer) { echo "<br><p>It works, email will now be sent."; } ?>
  5. with out having to user cron job, this would do that same thing. <?php header('Refresh: 5'); $timeis=date('Y:m:d h:i:s a', time()); echo $timeis; $timer=date('Y:m:d h:i:s a', time()); $mytimer="2013:09:27 07:20:00 am"; if ($timer>=$mytimer) { echo "<br><p>It works, email will now be sent."; } ?>
×
×
  • 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.