phpflow Profile

phpflow
Join Date:
2012-05-03
Blogs Owned
1. phpflow
php programming blog which is focused on programming problems in php programming , php tutorial, mysql tutorial, php, jQuery, Ajax, mysql, ajax interview questions, jquery interview questions, php latest interview questions.
Tags: php tutorials, programming, magento, jquery, mysql
Latest Blog Posts
- HTML5 mobile web developmenton Dec 31, 1969Hello, Now i am discussing how to create mobile app with help of HTML5,now every body using tabs, iPhone etc,so web development technology is also updated. to build mobile apps using several HTML5 features—including the new semantic elements, geolo...
- HTML 5 supported browsers liston Dec 31, 1969Now this era of web 2.0 and HTML5 is very excellent discovery of w3,only Apples Safari is fully HTML 5 fully supported browser.The Microsoft internet explorer still does not reconize HTML 5 where as Mozilla/chrome also not fully supported to html5.HT...
- Prevent Browser cache PHPon Dec 31, 1969Working in web development sometimes you need to reload the page from source not cache, this problem accrued when we are using Self Data POST in PHP. So solve this problem in php we will define header. The header tells the browser that for each reque...
- Create SEO Friendly URL or Slug URL using PHPon Dec 31, 1969Now we are discussing how to generate SEO friendly url from PHP method. Today we are normally easiest way to pass information between your pages is with a query string. Query string tacked parameters onto end of URL after question mark.We have define...
- Website login with google account/yahoo accounton Dec 31, 1969Website login is very important part of web development, now era is change no buddy want fill registration form to login in website, so solve this problem technology has a solution, that is open social login with Google, yahoo, Facebook, twitter. Ste...
- jQuery PHP & MySQL Username Availabilityon Dec 31, 1969Hi, Now I am discussing how to check user name availability and validation of username. We will show error message if the user name exists or validation type error. Step 1: Javascript Code We will create java script method to get data from input box...
- How to create branch on githubon Dec 31, 19691-git checkout -f 2-git checkout qa(if qa branch exist otherwise skip). 3-git pull(get all updated branch). 4-git checkout -b branch-name how to gives branch permission. 1- login as admin. 2- CHMOD -Rf 777 *...
- Fibonacci serieson Dec 31, 1969view plaincopy to clipboardprint? /* fibonancy series of sum of less than 100 number*/ $temp = “”; echo $x = ...
- how to create right angle in phpon Dec 31, 1969view plaincopy to clipboardprint? for ($i=0; $i<10; $i++) { for($j=1; $j<=$i; $j++) { echo $j .
- how to create tringle in phpon Dec 31, 1969view plaincopy to clipboardprint? /* tringle */ for ($i=1; $i<=5; $i++) { for($j=1; $j<=5-$i; $j++) { echo “...
- how to add capcha on your websiteon Dec 31, 19691- put the capcha image in project. download here 2- create captcha.php file in project. view plaincopy to clipboardprint? <?php session_start(); header(“Expires: Mon, 26 Jul 1997 05:00:00...
- how to send email with exact target apion Dec 31, 1969view plaincopy to clipboardprint? <?php echo ‘<pre>’; $path = $_SERVER['DOCUMENT_ROOT'].‘tests/tested/00 Includes/’; require($path . ‘ex...
- How to get amazon webservice methods availableon Dec 31, 1969view plaincopy to clipboardprint? <?php $client = new SoapClient(‘http://soap.amazon.com/schemas3/AmazonWebServices.wsdl’); echo “<pre>”; print_r($clien...
- get subscriber info with help of exact subscription apion Dec 31, 1969view plaincopy to clipboardprint? <?php echo ‘<pre>’; $path = $_SERVER['DOCUMENT_ROOT'].‘tests/tested/00 Includes/’; require($path . ‘ex...
- get php config infoon Dec 31, 1969...
- unfuddle webservice access with help of guzzleon Dec 31, 1969view plaincopy to clipboardprint? <?php use Guzzle\Http\Client; $client = new Client(‘https://mydomain.unfuddle.com/api/v1′); $request = $clie...
- add js/css file for a particular page in magentoon Dec 31, 1969I normally programmer putting inline code in template files to load css or javascript only on one specific page, instead of on all pages. There’s no need for that. You can add js/css file to a specific page simply by putting following lines in layo...
- Header already sent php erroron Dec 31, 1969This Warning is shown by PHP when you use the header function to output headers or use the setcookie function to set cookies after any echo or content which is not inside PHP tag. ?> Solution you can use output buffering functions to buffer your outp...
- Guzzle, PHP HTTP client and webservice frameworkon Dec 31, 1969Guzzle is a game changer in the world of PHP HTTP clients. Guzzle allows you to truly reap the benefits of the HTTP/1.1 spec. No other library makes it easier to manage persistent connections or send requests in parallel. In addition to taking the pa...
- how to create triangle in phpon Dec 31, 1969Below code will generate triangle in php. view plaincopy to clipboardprint? /* tringle */ for ($i=1; $i<=5; $i++) { for($j=1; $j<=5-$i; $j++) { ...