DirectoryInternetBlog Details for "PHP And Ajax Related Useful Resources and Codes"

PHP And Ajax Related Useful Resources and Codes

PHP And Ajax Related Useful Resources and Codes
Useful Tools, Tutorials, Codes , Tips, Tricks and Resources for all Ajax and Php beginners and experts .
Articles: 1, 2, 3, 4, 5

Articles

Block Shuffling effect using jquery
2008-06-08 07:14:00
Last time, I showed you how to navigate the content in various effect using jQuery. In this post, I’ll show you how can you generate the shuffle effect i.e one block moves under another block with sliding from the left. LIVE DEMO Now let’s look at the various code to perform this task. HTML and CSS code for ...SHARETHIS.addEntry({ title: "Block Shuffling effect using jquery", url: "http://roshanbh.com.np/2008/06/block-shu ffle-effect-jquery.html" });
More About: Effect , Jquery
Function to rotate image in PHP
2008-06-05 08:13:00
GD library in PHP is very useful for image processing and you can do a lot image manipulation from it. In this post, I’ll show you a simple Image manipulation (image rotation)using the function provided below in PHP. You’ll see how easy it is to rotate an image using PHP.     Function to rotate image using GD ...SHARETHIS.addEntry({ title: "Function to rotate image in PHP", url: "http://roshanbh.com.np/2008/06/rotate-im age-in-php.html" });
More About: Rotate
Letter to Bill Gates about the flaw in Microsoft?s Products
2008-06-02 12:28:00
Today I got a funny forwarded email from my friend Hari and I couldn’t stop posting it here in my blog. Just checkout the problem Banta is having in his new computer with various software products from Microsoft .       Subject : Problems with the Computers Dear Mr. Bill Gates , We have bought a computer for our home and we ...SHARETHIS.addEntry({ title: "Letter to Bill Gates about the flaw in Microsoft’s Products ", url: "http://roshanbh.com.np/2008/06/letter-to -bill-gates-problem-with-microsofts-produ cts.html" });
How to make accordion menu using jquery
2008-06-01 11:57:00
Last time, I’ve shown how to create accordion using jquery. But, In this post I’ll show you how can you create fancy accordion menu using jQuery. In this post, you’ll see two examples of accordion. First menu’s visibility get’s toggled on clicking on the header while the another menu’s visibility get’s toogled when mouse is ...SHARETHIS.addEntry({ title: "How to make accordion menu using jquery", url: "http://roshanbh.com.np/2008/06/accordion -menu-using-jquery.html" });
More About: Make , Menu , Accordion , Jquery
How to execute PHP code entered from textbox or textarea
2008-05-30 08:51:00
Yesterday, Sujit asked me how can we execute the php code entered through textarea in PHP. In many cases, it’s not good to execute the php code entered from textarea in PHP from the secruity point of view but in some cases you may have to do this and I’m going to tell you here ...SHARETHIS.addEntry({ title: "How to execute PHP code entered from textbox or textarea", url: "http://roshanbh.com.np/2008/05/execute-p hp-code-textbox-textarea.html" });
More About: Code
Default arguments in the functions of PHP
2008-05-27 10:57:00
If you are unaware of default argument in function then you should know that you candefine the function with default arguments in PHP as you can do it C and C++. Providing default arguments in the function can be very useful when you’ve to extend the the functionality of the previously written functions.   Example of using ...SHARETHIS.addEntry({ title: "Default arguments in the functions of PHP", url: "http://roshanbh.com.np/2008/05/default-a rguments-functions-php.html" });
More About: Functions
7 Useful functions to tighten the security in PHP
2008-05-24 20:25:00
Security is a very important aspect of programming. In PHP, there are few useful functions which is very handy for preventing your website from various attacks like SQL Injection Attack , XSS attack etc.Let’s check few useful functions available in PHP to tighten the security in your project. But note that this is not a ...SHARETHIS.addEntry({ title: "7 Useful functions to tighten the security in PHP", url: "http://roshanbh.com.np/2008/05/tighten-p hp-security-functions.html" });
More About: Security , Functions
Interesting Definations of IT job People?s Designations
2008-05-22 09:14:00
Today, I’ve got a interesting forward mail from one of my friend and I couldn’t stop posting it here. Check out some of the very funny and interesting definitions of the various designations of the people related to the IT jobs. Please don’t take the definitions too seriously. These definitions are just for fun and ...SHARETHIS.addEntry({ title: "Interesting Definations of IT job People ’s Designations", url: "http://roshanbh.com.np/2008/05/interesti ng-definations-of-it-job-designations.htm l" });
More About: Others
how to choose suitable web hosting provider ?
2008-05-18 21:00:00
Previously, this blog was hosted under a web server provided by a local web hosting provider out here in Nepal. I had few problems with that hosting provider and made up my mind to change the web hosting provider and I didn’t know which provider will be the best to choose among many found in ...SHARETHIS.addEntry({ title: "how to choose suitable web hosting provider ?", url: "http://roshanbh.com.np/2008/05/choosing- suitable-web-hosting-provider.html" });
More About: Hosting , Web Hosting , Choose , Provider
Some unusual comparison operations in PHP
2008-05-16 12:30:00
Today I was working for a project and a weired comparison operation in PHP got my brain out for 2 hour and after searching in google I could able to figure out the problem and I’m posting here so that you guys who are unaware of this kind of comparison will not suffer in future. ...SHARETHIS.addEntry({ title: "Some unusual comparison operations in PHP", url: "http://roshanbh.com.np/2008/05/unusual-c omparison-operation-php.html" });
More About: Comparison
Create mobile sites in a fly using mobilemo
2008-05-14 06:32:00
Have you accessed this blog through your mobile phones or PDA? It looks very big and totally inaccessible from those devices. These blog is basically designed and formatted to be fitted for the PC not for the small screened devices.And, you might know that the sites designed for mobile devices are known as “WAP sites” ...SHARETHIS.addEntry({ title: "Create mobile sites in a fly using mobilemo", url: "http://roshanbh.com.np/2008/05/create-mo bile-sites-in-a-fly-using-mobilemo.html" });
More About: Mobile , Sites
8 useful server variables available in PHP
2008-05-13 12:42:00
You guys must have know about server variables in PHP. Server Variables are those variables which are inside the super global array named $_SERVER available in PHP. There are many server variables in PHP and some of them are very useful for fore developing PHP projects. I’m going to post here some of the very ...SHARETHIS.addEntry({ title: "8 useful server variables available in PHP", url: "http://roshanbh.com.np/2008/05/useful-se rver-variables-php.html" });
Date format validation in PHP
2008-05-11 13:20:00
Today Sushil asked me how can we validate the date which is entered from textbox in “YYYY-MM-DD” format. Well, we can validate the format of the date using regular expression but how to validate weather that date is valid date or not, such as “2007-02-29″ is the correct format of the date but it’s not ...SHARETHIS.addEntry({ title: "Date format validation in PHP", url: "http://roshanbh.com.np/2008/05/date-form at-validation-php.html" });
More About: Validation , Format
All kind of vehicle services for you
2008-05-11 13:17:00
Today, I was talking with my friend who stays in Ripon, a city of England. He wanted to buy a medium-size vehicle and I’ve suggested him to buy Land Rover vehicle.He said he couldn’t afford it. Then I showed him a website which provides various services for LandRover like providing Loan for vehicles, servicing ...SHARETHIS.addEntry({ title: "All kind of vehicle services for you", url: "http://roshanbh.com.np/2008/05/all-kind- of-vehicle-services-for-you.html" });
More About: Services , Vehicle
Animated content navigation effect using jquery
2008-05-08 08:58:00
dzone_url = "http://roshanbh.com.np/2008/05/animated- content-navigation-jquery.html";var dzone_style="2";I always get bored with the same stuffs. And, I see same kind of content navigation to the different websites. Click a link, let’s the whole web page gets loaded and new page gets displayed. It would be better to show another content in the same page with few animation without loading the whole ... SHARETHIS.addEntry( { title: "Animated content navigation effect using jquery", url: "http://roshanbh.com.np/2008/05/animated- content-navigation-jquery.html" } );
More About: Navigation , Content , Effect , Jquery
Promote your website in web directory
2008-05-07 11:12:00
You guys all know that this time I’ve got PR-5 from Google in the latest PR update. PR is basically a measure of the link popularity of your website and It’s always good to have your website listed in the web directory for the better page-rank. Today, I’ve come around a web directory called http://www.dirmania.org. It ... SHARETHIS.addEntry( { title: "Promote your website in web directory", url: "http://roshanbh.com.np/2008/05/promote-y our-website-in-web-directory.html" } );
More About: Website , Directory
Understanding and Validating Integers in PHP
2008-05-04 21:20:00
I’ve found many of my friends struggling with the validation of integers i.e. the numbers with only digits in PHP. Some of them were wondering why is_int() or is_integer() functions of PHP sometimes works and sometimes won’t. If you become clear with the concept of integer and string in PHP then you’ll obviously come to know ... SHARETHIS.addEntry( { title: "Understanding and Validating Integers in PHP", url: "http://roshanbh.com.np/2008/05/understan ding-and-validating-integers-in-php.html" } );
How to redirect browser to https (ssl) in php
2008-05-02 14:12:00
Most of the e-commerce website uses payment gateway for online payment. And, those sites uses SSL (secure socket layer) connection to trasafer data to and from the payment gateway. In the common scenario, most of the sites uses “http” protocal and you can see “http” in the browser’s address bar. But in the above scenario,we ... SHARETHIS.addEntry( { title: "How to redirect browser to https (ssl) in php", url: "http://roshanbh.com.np/2008/05/redirect- browser-https-ssl-php.html" } );
More About: Browser , Redirect
Upgrade your wordpress - easily and quickly
2008-05-01 07:54:00
Hello bloggers mates….well it might be little bit late for alerting you but I think you should upgrade your Wordpress blog if you’re using the old version of it. There are a lot of security flaw in the previous versions.Furthermore, if you search in google with the keyword “My blog hacked” and you’ll get around ... SHARETHIS.addEntry( { title: "Upgrade your wordpress - easily and quickly", url: "http://roshanbh.com.np/2008/05/upgrade-y our-wordpress-easily-quickly.html" } );
Google?s Latest PR Update - I?m winner this time
2008-04-29 11:41:00
Last time, I was was really disappointed by the google’s PR update. I was really unknown about some google’s terms and this blog have lost the PR and it went to zero. And believe me, this blog is lame without the traffic of google as it gets more visitor from search engine than the ... SHARETHIS.addEntry( { title: "Google ’s Latest PR Update - I’m winner this time", url: "http://roshanbh.com.np/2008/04/googles-l atest-pr-update.html" } );
More About: Time , Winner
How to know and handle disabled javascript in browser
2008-04-27 13:22:00
In this blog, I’ve been writing a lot of tips and tutorials using JavaScript. I really love javascript and hope that you guyz also like it. But what to do when javaScript is disabled in the client’s browser?. I would like to redirect the visitor to a warning page where he’ll be suggested to enable ... SHARETHIS.addEntry( { title: "How to know and handle disabled javascript in browser", url: "http://roshanbh.com.np/2008/04/how-to-kn ow-handle-disabled-javascript.html" } );
More About: Javascript , Browser , Disabled , Handle
Ajax login validation in PHP using jQuery?s fading effect
2008-04-24 12:57:00
Last time, I’ve showed you how to check user availability in Ajax using jQuery’s fading effect. But I’ve just shown the example without connecting the database and some people have faced problem with database connecting solution of that problem.In this post, I’ll show you how to use Ajax login validation in php using jQuery and ... SHARETHIS.addEntry( { title: "Ajax login validation in PHP using jQuery’s fading effect", url: "http://roshanbh.com.np/2008/04/ajax-logi n-validation-php-jquery.html" } );
More About: Validation , Effect , Jquery
Change default directory page using .htaccess
2008-04-21 17:27:00
I know you guzy all know about index file. This is the default file which is executed in the web server. For example, if you type”http://roshanbh.com.np” in this the browser, the “index.php” gets loaded first. This “index.php” file is commonly know as directory index file. Basically , the default executed file in the web directory starts ... SHARETHIS.addEntry( { title: "Change default directory page using .htaccess", url: "http://roshanbh.com.np/2008/04/change-de fault-page-htaccess.html" } );
More About: Page , Directory
Direct advertising on roshanbh.com.np
2008-04-19 06:54:00
This blog is getting a decent number of visitors and this might be a good opportunity for the advertisers who want to promote their service, product or website about web development. This blog might be a doorway for you. View Pricing Detail » SHARETHIS.addEntry( { title: "Direct advertising on roshanbh.com.np", url: "http://roshanbh.com.np/2008/04/direct-ad vertising-on-roshanbhcomnp.html" } );
More About: Advertising
Ip address validation in PHP using regular expression
2008-04-18 19:14:00
If you don’t know how to validate the IP address format in PHP, then you are in the right place.I’ll show you here how to validate the IP address using regular expression in PHP. SHARETHIS.addEntry( { title: "Ip address validation in PHP using regular expression", url: "http://roshanbh.com.np/2008/04/ip-addres s-validation-php.html" } );
More About: Validation , Regular , Regular Expression , Address , Expression
Textbox to accept only numbers (digits) using jquery
2008-04-16 19:33:00
dzone_url = "http://roshanbh.com.np/2008/04/textbox-a ccept-only-numbers-digits.html";var dzone_style="2";Few days back, my friend Parleen asked me how can we make a textbox which just accepts only numbers specially digits only. And, for his I come up with this solution of textbox which only accepts digits, and if you try to enter any alpha bates in it then it displays the error message ... SHARETHIS.addEntry( { title: "Textbox to accept only numbers (digits) using jquery", url: "http://roshanbh.com.np/2008/04/textbox-a ccept-only-numbers-digits.html" } );
More About: Numbers , Accept , Jquery
Solving time difference between hosting server and local timezone in PHP
2008-04-14 14:01:00
I think this is one of the common problem you’ll face while you’re working for the website of a particular country and web server is located in another different country. If client have the dedicated server then you won’t face this problem. But if you just own a single account of that server then you’ll ... SHARETHIS.addEntry( { title: "Solving time difference between hosting server and local timezone in PHP", url: "http://roshanbh.com.np/2008/04/time-diff erence-hosting-server-local-time-php.html " } );
More About: Hosting , Time , Local , Server , Difference
Blink and bounce effect on image or object using jquery
2008-04-11 18:56:00
Yesterday, Sushil asked me how can we bounce and blink an image or div using jQuery.In this post, I”ll show you how you can add bounce or blink effect to an image or div using jQuery. SHARETHIS.addEntry( { title: "Blink and bounce effect on image or object using jquery", url: "http://roshanbh.com.np/2008/04/blink-bou nce-effect-image-jquery.html" } );
More About: Bounce , Image , Effect , Object
Hide actual url in address-bar using iframe
2008-04-09 18:38:00
dzone_url = "http://roshanbh.com.np/2008/04/hide-url- display-same-url-website.html";var dzone_style="2";Do you want to hide the actual URL in the address-bar? Do you want to display the same url throughout the website? Then here is the tips for you do the same in your website. Just display the same URL i.e http://www.your-site.com throughout your website in address bar, no matter if you in the ... SHARETHIS.addEntry( { title: "Hide actual url in address-bar using iframe", url: "http://roshanbh.com.np/2008/04/hide-url- display-same-url-website.html" } );
More About: Address
How to check and enable mod_rewrite module in apache
2008-04-07 07:42:00
Well, I’ve got around 15 emails asking from readers, how to check the mod_rewrite module in apache and enable mod_rewrite module in apache after reading two most of the popular post of this blog 5 useful url rewriting examples and hide .php extension with url rewriting. SHARETHIS.addEntry( { title: "How to check and enable mod_rewrite module in apache", url: "http://roshanbh.com.np/2008/04/check-ena ble-mod_rewrite-apache.html" } );
More About: Apache , Check , Module
More articles from this author:
1, 2, 3, 4, 5
40522 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2008 - SEO by FeWorks
eXTReMe Tracker