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 development
    on Dec 31, 1969
    Hello, 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 list
    on Dec 31, 1969
    Now 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 PHP
    on Dec 31, 1969
    Working 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 PHP
    on Dec 31, 1969
    Now 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 account
    on Dec 31, 1969
    Website 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 Availability
    on Dec 31, 1969
    Hi, 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 github
    on Dec 31, 1969
    1-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 series
    on Dec 31, 1969
    view plaincopy to clipboardprint? /* fibonancy series of sum of less than 100 number*/      $temp = “”;      echo $x = ...
  • how to create right angle in php
    on Dec 31, 1969
    view plaincopy to clipboardprint? for ($i=0; $i<10; $i++) {         for($j=1; $j<=$i; $j++) {          echo $j .
  • how to create tringle in php
    on Dec 31, 1969
    view plaincopy to clipboardprint? /* tringle */   for ($i=1; $i<=5; $i++) {      for($j=1; $j<=5-$i; $j++) {       echo “...
  • how to add capcha on your website
    on Dec 31, 1969
    1- 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 api
    on Dec 31, 1969
    view plaincopy to clipboardprint? <?php    echo ‘<pre>’;   $path = $_SERVER['DOCUMENT_ROOT'].‘tests/tested/00 Includes/’;   require($path . ‘ex...
  • How to get amazon webservice methods available
    on Dec 31, 1969
    view 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 api
    on Dec 31, 1969
    view plaincopy to clipboardprint? <?php    echo ‘<pre>’;   $path = $_SERVER['DOCUMENT_ROOT'].‘tests/tested/00 Includes/’;   require($path . ‘ex...
  • get php config info
    on Dec 31, 1969
    ...
  • unfuddle webservice access with help of guzzle
    on Dec 31, 1969
    view 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 magento
    on Dec 31, 1969
    I 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 error
    on Dec 31, 1969
    This 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 framework
    on Dec 31, 1969
    Guzzle 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 php
    on Dec 31, 1969
    Below code will generate triangle in php. view plaincopy to clipboardprint? /* tringle */   for ($i=1; $i<=5; $i++) {      for($j=1; $j<=5-$i; $j++) {  ...
1
Blogs
0
Followers
0
Following
Loading Comments...

My Wall

{ds_PageTotalItemCount} commentcomments
{pvComments::date}
{pvComments::comment}

Post a Comment

Log in or Register to place a comment

Close