• Member Avatar for almostbob
    almostbob

    Began Watching Define fallback in detail

    Tell me in detail aboutthe fallback in catch.
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Define fallback in detail

    Do your own bloody homework You advertise in your signature skills you don't have, pretend you have some, go away and read
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to sammry in how to sms to mobile phones from my web site.

    I have heard sa far good about www.smsgatewaycenter.com from India. They help you in basic script in PHP. But again, its a a paid service using HTTP API. Free SMS …
  • Member Avatar for almostbob
    almostbob

    Began Watching php

    Hi, What is the difference between include() and reqiured() in php.
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in php

    main difference in the OP include() is spelled properly, and will work reqiured() is not, and won't
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to matrixdevuk in Need Help? Check This Out First (or second)!

    Hello! So, I see you need help... or maybe you just fancy a nice little read. Either way, this is here for a reason. When you post code on DaniWeb, …
  • Member Avatar for almostbob
    almostbob

    Began Watching String to date: php to mysql

    Hi, im trying to transform a string to make it a date $date1 = '$month/$day/$year'; //in jS value form type="number" $date2 = strtotime($date1); $date3 = date('Y-m-d',$date2); The problem is that …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in String to date: php to mysql

    the database is not supposed to be human readable why not simplify everything and store the timestamp generated in line 2 sql date objects store in 4 bytes text dates …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Works fine but getting error messages

    likely: you have reached the end of the database, and do not catch the limit as an error ie there are 4393 items and it cannot find 4394 to add …
  • Member Avatar for almostbob
    almostbob

    Began Watching Works fine but getting error messages

    Here is the code <?php session_start(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="description" content="PHP Shopping Cart Using Sessions" /> <meta name="keywords" content="shopping cart …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Works fine but getting error messages

    work through the code and correct all the definitions, as gabrielcastillo indicated or check the existence of all appropriate variables at the start of the script, and output plain html …
  • Member Avatar for almostbob
    almostbob

    Began Watching How to

    how to make like the picture below with jquery and php ![8f44abc169cde7f28b0640f162a17cee](/attachments/large/4/8f44abc169cde7f28b0640f162a17cee.png "8f44abc169cde7f28b0640f162a17cee")
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in How to

    why make an image, another http request with the delay and extra page size required, why not just use text to represent a text if you must image create and …
  • Member Avatar for almostbob
    almostbob

    Began Watching which Language to to take seriously

    Hi there, I just started to study software developmnet, something we call over "Ausbildung" which i think is called apprentice.man have learn programming in Java,C++, C# sqldatabase. my question is …
  • Member Avatar for almostbob
    almostbob

    Began Watching Browser loader doesn't show on my website

    Hello, I am creating a website in WordPress. http://patricia.kwayyinfotech.com/ In Google Chrome browser, on opening any page from my site, the browser loading disappeared and the page white screen. The …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Browser loader doesn't show on my website

    please, DONT put any dumb loading screens the extra time wasted to load and display the "loading" image is usually longer than the time taken to load the page if …
  • Member Avatar for almostbob
    almostbob

    Began Watching convert 20usd to visitor currency automatically

    hello, after accessing users country name,,can i have a php snippet which will convert 20usd automatically to visitor currency ???
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in convert 20usd to visitor currency automatically

    of course it expects others to do its homework http://www.geoplugin.com/examples
  • Member Avatar for almostbob
    almostbob

    Began Watching How can I retrieve data from MySQL table and insert it into QR code using P

    I have this PHP code that creates a QR code with the given data: <?php include(JPATH_LIBRARIES . '/phpqrcode/qrlib.php'); $tempDir = JPATH_SITE . '/images/'; $codeContents = 'This Goes From File'; $fileName …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in How can I retrieve data from MySQL table and insert it into QR code using P

    <?php include(JPATH_LIBRARIES . '/phpqrcode/qrlib.php'); $data = mysql_fetch_array( mysql_query("SELECT Name, Mail, Phone FROM #_rsforms_submissions WHERE Username = $username")); $tempDir = JPATH_SITE . '/images/'; $codeContents = $data['name']." ".$data['phone']." ".$data['mail']; $fileName = 'qr_'.md5($codeContents).'.png'; …
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to abhishek.kr in Simple PHP code is NOT working in HTML

    goto : C:\xampp\apache\conf\ and add this line to "httpd.conf" : AddHandler application/x-httpd-php .html hope this works!
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to abhishek.kr in Simple PHP code is NOT working in HTML

    goto : C:\xampp\apache\conf\ and add this line to "httpd.conf" : AddHandler application/x-httpd-php .html hope this works!
  • Member Avatar for almostbob
    almostbob

    Began Watching Simple PHP code is NOT working in HTML

    In my HTML-page I am using following HTML + PHP-code: [COLOR="Blue"]Today is: <? print(Date("l F d, Y")); ?>.[/COLOR] I would expect to see: [COLOR="Green"]Today is: monday October 4, 2010.[/COLOR] or …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Simple PHP code is NOT working in HTML

    starthosting has disabled *add handler server parsed*, in php.ini for their convenience they know exactly what they have done, and yes they refuse to change it.. it is a simple …
  • Member Avatar for almostbob
    almostbob

    Began Watching saving download file in particular folder by user selection

    hi all i am trying to allow the user to select the folder to store the downloading file using javascript i didnt found input attribute for download like file i …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in saving download file in particular folder by user selection

    Folder selection is controlled by the user anyway, by the default handlers in every browser and every OS, there is nothing to be done by you.
  • Member Avatar for almostbob
    almostbob

    Stopped Watching What are you eating/drinking right now?

    Well I just started eating dinner and thought this would be a neat topic. Everyone knows we love to eat while on the computer; two birds, one chair. I'll start …
  • Member Avatar for almostbob
    almostbob

    Began Watching Adobe Font Kit / Google Fonts linked or embedded?

    Hey Folks, I'm investigating the use of selective Fonts - outside of the "usual" or default set and want to avoid making any font into an image file (.gif .jpg …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Adobe Font Kit / Google Fonts linked or embedded?

    Was gonna rave about google fonts linked, but Mattster put it better than I would superfast, works on everything, and very likely the font will already be in the cache,
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Directory submission?

    I'm assuming google's 101 how google calls the web is the rules
  • Member Avatar for almostbob
    almostbob

    Began Watching Travel Forum

    Hi all, I am new here. Can anyone please tell me how to find a travel forum list that are with PR ratings.
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Travel Forum

    bc govt Vancouver Govt airport Kijiji (surprised but it has a huge pr) Check your YP listing Google webmaster tools, make sure your site is aa1 Google Merchant Center Google …
  • Member Avatar for almostbob
    almostbob

    Began Watching E-commerce Website with shopping cart

    How can i make it? I need a source code.
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in E-commerce Website with shopping cart

    the thread title would have made a great google search term [goo.gl](http://goo.gl/zbwshX) get off your lazy behind and do something or >How can i make it? by sitting down at …
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to Himanshu1988 in E-commerce Website with shopping cart

    Use WordPress with WooCommerce plugin.
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to riyaz123 in From were we will get a backlinks immediately

    According to google algorithm generating instead backlink is not good. Google may can harm your website So, better way of generatng website is nothing but manually submission on haigh domain …
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to riyaz123 in From were we will get a backlinks immediately

    According to google algorithm generating instead backlink is not good. Google may can harm your website So, better way of generatng website is nothing but manually submission on haigh domain …
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to riyaz123 in From were we will get a backlinks immediately

    According to google algorithm generating instead backlink is not good. Google may can harm your website So, better way of generatng website is nothing but manually submission on haigh domain …
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to ddanbe in What are you eating/drinking right now?

    It's getting hot here in Spain, gin tonic with a lot of ice. !Refreshing¡
  • Member Avatar for almostbob
    almostbob

    Began Watching What are you eating/drinking right now?

    Well I just started eating dinner and thought this would be a neat topic. Everyone knows we love to eat while on the computer; two birds, one chair. I'll start …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in What are you eating/drinking right now?

    Its getting cold, home made chicken soup: comfort food
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in CAN ANYONE GIVE ME THE SCRIPT OF THIS FORUM

    what part of > You could ask the site owner: the site includes copyright notice and contact details to the coder makes no sense to you don't ask people to …
  • Member Avatar for almostbob
    almostbob

    Began Watching CAN ANYONE GIVE ME THE SCRIPT OF THIS FORUM

    PLS GIVE ME ANYONE THE FULL SCRIPT OF THIS FORUM http://sattadon.com/forum/forum.php WITHE QUOTE FUNCTION PLS ITS SO URGENT
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in CAN ANYONE GIVE ME THE SCRIPT OF THIS FORUM

    This site is more often populated by authors we know that view source does not get you the serverside code you are trying to steal, Rubberman is trying deliberately to …
  • Member Avatar for almostbob
    almostbob

    Began Watching From were we will get a backlinks immediately

    From were we can generate backlinks? how its possible to generate a backlink for a day? Many are saying that it is through off page submissions?.. But do anyone know …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in From were we will get a backlinks immediately

    Do not post on external sites expecting returns for a keyword, it does not work that way By posting links in blog conversations, or as signature links in forum posts, …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Im stuck! what else to put?

    I still dunno what is good for a mac, Jenn(daughter) can't tell me much, she doesnt do much writing closed architecture makes it difficult there isnt so much available All …
  • Member Avatar for almostbob
    almostbob

    Replied To a Post in Im stuck! what else to put?

    Those were some useless pointless commands quote [w3c:HTML/Elements/marquee](http://www.w3.org/wiki/HTML/Elements/marquee) > <marquee> > > HTML Reference > > The <marquee> element is a non-standard element. > HTML5 classifies it as a non-conforming …
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to oriclon in Im stuck! what else to put?

    <marquee>This text will scroll from right to left slowly</marquee> <marquee behavior="alternate" scrollamount="50" scrolldelay="8">This text will go Alternate from Left to Right</marquee> <marquee behavior="slide">This text will scroll in and "stick."</marquee> <marquee …
  • Member Avatar for almostbob
    almostbob

    Gave Reputation to oriclon in Im stuck! what else to put?

    <marquee>This text will scroll from right to left slowly</marquee> <marquee behavior="alternate" scrollamount="50" scrolldelay="8">This text will go Alternate from Left to Right</marquee> <marquee behavior="slide">This text will scroll in and "stick."</marquee> <marquee …

The End.