1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Likes Received By jestep

  1. Digital_shubhi liked jestep's post in the thread HDFC PIN Wrong entered...........

    Call the number on the card. Probably the only shot. Some banks permanently cancel the card if the PIN is entered incorrectly 3 times.

    Sep 11, 2010
  2. Toon-c liked jestep's post in the thread Opening US Bank Account for Non-Resident.

    Because of some laws that were passed after 9/11, it's almost impossible to get a US bank account if you are not in the US. As far as I...

    Sep 3, 2010
  3. Emma13th liked jestep's post in the thread Opening US Bank Account for Non-Resident.

    Because of some laws that were passed after 9/11, it's almost impossible to get a US bank account if you are not in the US. As far as I...

    Sep 3, 2010
  4. Deacalion liked jestep's post in the thread Oracle or microsoft: which database is better?.

    Oracle wasn't sold. They acquired SUN which should significantly bolster the potential advancements in the products and platform they...

    Jul 24, 2010
  5. ycc liked jestep's post in the thread draw graphs in php.

    http://pchart.sourceforge.net/ I've been using this one for a while. Very quick and makes nice easily modifiable graphs and charts. If...

    Jun 25, 2010
  6. devil_wears_pink liked jestep's post in the thread Whats the response like to Moneybookers Payment options on websites instead of PAYPAL.

    Something to do with anti-gambling/money-laundering laws that the US gov't passed. Basically once congress banned online poker and...

    Jun 22, 2010
  7. peppy liked jestep's post in the thread How to display a number larger than 2147483647.

    Use an unisigned BIGINT. It maxes out significantly higher - 18446744073709551615 is the max value. .

    Jun 16, 2010
  8. joomladev liked jestep's post in the thread Is there a good POS script out there??.

    There's a few payment gateways that support integration with a magnetic card reader. These don't handle any of the POS side of it, just...

    Jun 13, 2010
  9. Chance liked jestep's post in the thread Automated processing for digital products. Who is the best?.

    These guys aren't free but offer a good product: http://getdpd.com/

    Jun 11, 2010
  10. calcalmx123 liked jestep's post in the thread Small Help Needed Please :).

    You need to implement some error handling. This means that your query is not returning a valid resource/result. Replace: $data =...

    Jun 7, 2010
  11. rebelagent liked jestep's post in the thread GoDaddy won't use my php UPDATE and SET code...HELP please.

    See what error this throws: Replace: $result=mysql_query($sql); with: if(!$result=mysql_query($sql)) { die(mysql_error()); }

    Jun 3, 2010
  12. j0563 liked jestep's post in the thread Trying to delete rows in a table with PHP -Please Help!.

    You just need to loop through your result set. $adminusers = mysql_query("SELECT id FROM df_users WHERE owner=$docsuserid"); // I'm...

    Jun 2, 2010
  13. tlshaheen liked jestep's post in the thread Dangers of using SELECT *.

    It's not necessarily dangerous, it's just slow, possible very slow, and lazy coding. If you table has 5 small columns,...

    May 27, 2010
  14. PhilipSEO liked jestep's post in the thread accepting flexible payments via a website.

    Easiest way is to find a donation script that allows for variable amounts. This would allow the user to enter the payment amount. Are...

    May 26, 2010
  15. Lastbutnotleast liked jestep's post in the thread payment processing - what service to use?.

    The drawback with paypal, is that you must charge based on the schedule. If you ever need to charge outside of the set schedule, it's...

    May 20, 2010
  16. Alam liked jestep's post in the thread MySQL group by in text type date field.

    I'm assuming the date column is an int, char or varchar and not a datetime type, this should be the most efficient way to do it. GROUP...

    May 16, 2010
  17. adfave liked jestep's post in the thread Select Records only for cetain Year and Month.

    You can do something like this. Select * FROM table where MONTH(date) ='02' AND YEAR(date) = '2010'; Just fyi, this will not allow...

    Mar 3, 2010