19
Jun
Posted by: ZenCode
In case somebody out there is eager to learn how to do this, I’m sharing this guides. http://phpbuilder.com/columns/jason_gilmore20080425.php3 http://phpbuilder.com/columns/jason_gilmore20080502_2.php3 So there it is, you may try right now how to make an AJAX-driven Shopping Cart with PHP and Prototype.
Read the rest of the story » Developing AJAX-driven Shopping Cart with PHP and Prototype
19
Jun
Posted by: ZenCode
I just found this in my firefox bookmarks (I’m cleaning my bookmarks at the moment. I have this nasty and messy habit of dragging my surfed sites out in the bookmarks area and don’t check ‘em out later… or maybe forever) Enjoy, what is Web 2.0… the web is evolving…
Read the rest of the story » The Web is evolving, check out this youtube video
19
Jun
Posted by: ZenCode
I found this microblogging from tweeter.com, tweetmygaming.com… I’ll try to implement this in GamerPinoy.com later…
Read the rest of the story » TweetmyGaming.com, microblogging for gamers
19
Jun
Posted by: ZenCode
This error message occurs when a functional PHP script exceeds the default memory allocation which is only 8MB limit. To manually allocate your required memory size include this at the top of your script. ini_set(“memory_limit”, “12M”); The 12M sets the limit to 12 mb, if this doesn’t work just increase the memory limit till it [...]
Read the rest of the story » Solve PHP Fatal error: Allowed memory size of 8388608 bytes exhausted (tried…
19
Jun
Posted by: ZenCode
An article here in http://ago.tanfa.co.uk/css/examples/css-dropdown-menus.html where I found the technique. I haven’t actually use it (maybe later) however I have a similar style in which I used in my portfolio. It’s a on hover mouse image preview, I like doing this css techqniques as it appears to be faster than using other javascript framework like [...]
Read the rest of the story » Learning to use CSS for Drop Down Menus
19
Jun
Posted by: cooljane
I wonder how this works, while surfing the net (like I usually do) I found this site payperpost.com. I will try to signup and check how this works. http://www.amfufu.com/2008/05/20/payperpost-get-paid-to-blog/
Read the rest of the story » Get paid by blogging in your own blog by payperpost
19
Jun
Posted by: ZenCode
There are two ways that I will discuss this topic, first by means of HTTP-EQUIV Refresh and by means of Javascript. Redireting with HTTP-EQUIV Refresh <META http-equiv=”refresh” content=”5; URL=http://www.balitaktakan.com”> …the content=”5; … means that the timeout before redirecting the page will be in 5 seconds. Of course, the URL= will be the page/site or wherever [...]
Read the rest of the story » Auto Redirect the browser to another page
19
Jun
Posted by: ZenCode
It’s been a long time now that it is possible to create PDF files from PHP, there is already a series of functions in PHP to do this. You can find the information on creating PDF documents read the following article from zend: http://www.zend.com/zend/spotlight/creatingpdfmay1.php If you need a ready to use PDF PHP Library, you [...]
Read the rest of the story » Learning How to create PDF files from PHP
19
Jun
Posted by: ZenCode
The environment variable $REMOTE_ADDR is where the users IP address is stored. if you want to resolve the domain name for that IP you can use this code. $domain = GetHostByName($REMOTE_ADDR);
Read the rest of the story » How to get user’s IP address
19
Jun
Posted by: ZenCode
There is an easy way of creating your favicon if you don’t know how to create on in photoshop. You can use favicon.cc, and guess what. You can even import an image, so start converting your pictures into those tiny favicon icons! Now, one thing I noticed in favicon.cc’s logo is that there is resemblance [...]
Read the rest of the story » Easy way to create your website’s favicon