Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts

Wednesday, 12 February 2020

PHP, MySql, Jquery, AngularJS, Ajax, Codeigniter and Laravel Tutorial Web blog

Myitbuddies is the most popular Programming & Web Development blog. Our main work is to make the best online tutorial on programming and web development. We bring the useful and best tutorials for web professionals — developers, programmers, freelancers and site owners. Any viewer of this site are free to browse our tutorials and download scripts.

Our Skills

We are supplying the tutorial of the following technologies:

Friday, 17 January 2020

Sunday, 23 June 2013

New offer for you guys..................?




 Hello guys i have new collection of free software for you .just visit the above link and see what I have new software for you guys which are totally free just visit and start download thanks

Have a look some software below 

here you guys find more and more free software so keep save your time and money and just visit the site and start downloading software and much more.........................Also awesome information ...............................................................................................

              click here to visit now

Saturday, 15 June 2013

sikkinc-Home





sikk inc has been producing quality products since 200 1n 2005 we sold our first cruisers and have been perfecting them ever since, we have spawned many imitators over the last few years but no one can match our style , quality or price !don’t sell your soul to the devil and overpay for a lesser quality short cruiser !!
our mens and ladies custom beach cruisers are longer from the seat to the bars for the best most comfortable ride and the colors you want , no short stubby frames like the big box brands in 2013 we introduced our mens 29 in xl cruiser, they feature one of the biggest and longest frames available for bigger and taller riders , once you ride the 29 you will never settle for less late summer we will offer our new “ufo” model that will blow the others away , look for it this july !
we offer a 5 year frame warranty and 12 month on all other components , we stand behind our quality bikes and know you will enjoy cruising in style !!


   for more information visit here!

                                 www.sikkinc.com

AZBEACHBIKES - Home





sikk inc has been producing quality products since 200 1n 2005 we sold our first cruisers and have been perfecting them ever since, we have spawned many imitators over the last few years but no one can match our style , quality or price !don’t sell your soul to the devil and overpay for a lesser quality short cruiser !!
our mens and ladies custom beach cruisers are longer from the seat to the bars for the best most comfortable ride and the colors you want , no short stubby frames like the big box brands in 2013 we introduced our mens 29 in xl cruiser, they feature one of the biggest and longest frames available for bigger and taller riders , once you ride the 29 you will never settle for less late summer we will offer our new “ufo” model that will blow the others away , look for it this july !
we offer a 5 year frame warranty and 12 month on all other components , we stand behind our quality bikes and know you will enjoy cruising in style !!


     For more details Visit Now.
      
                        www.azbeachbikes.com
                                                          


Tuesday, 14 May 2013

Sell Your Macbook Now

Sell Your Macbook,Ipone,Ipade



At “Sell Your Macbook Pro”, we pay you for the cell phones, iPads, Macs and other Apple devices you no longer need or if they are not in working condition. We can help you to upgrade faster or you can put a little extra cash in your pocket.

Macbook Pro, iPad, iPhone  must be sent within 10 Days period from the day of quote.

We will pay you exactly what we offered with the exception of fraud and/or gross misrepresentation

All clients are paid at their request, by either company check, PayPal instant transfer or Western Union. Checks are mailed via usps priority mail to the address of the sellers request. There may be a brief inspected period at our facility in order to confirm the model and damage to the device.

By shipping your Macbook pro, iPhone, or iPad to us, you certify that you are the legal owner of this electronic device.

All initial quotes are in pending status and waiting our evaluation of your  electronic device and no binding offer is made until we have had a chance to inspect the laptop or other device that you send to us. We reserve the right to refuse to offer to purchase any item that you send us for any reason we deem, in our sole discretion, to be sensible. You must send us your laptop (or any other electronic gadget) within the time period stated herein. We reserve the right to refuse to purchase an item at our sole discretion, in such cases, where an item meets the description, we will assume responsibility to return the item, at our expense. If we decide not to purchase the device, you will be given the option of allowing us to recycle the device but you will not receive any payment for the device. You must appropriately package the device you send us in order to protect it from harm during the shipping process. You are solely responsible for any harm that comes to the device you send us if you fail to appropriately package the device prior to sending it.
 

Wednesday, 1 May 2013

Monday, 29 April 2013

Superbird is the alternative to Google Chrom



Best and Free download Superbird Browser for myITbird 
click below and download now

Superbird is the alternative to Google Chrome


Superbird is a free browser with special emphasis placed on speed, stability and data security.
Compared to other browsers, Superbird surprises with extremely fast site rendering.
The browser is based on the open Google Chrome source code but does not send data about user behavior (e.g. visited sites) to Google.
There's a variety of extensions for Superbird, like adblocker, themes, plugins


Superbird is the alternative to Google Chrome 

Superbird is the alternative to Google Chrome 

Superbird is the alternative to Google Chrome 

Superbird is the alternative to Google Chrome

 

 

 

Thursday, 28 February 2013

Lecture #5 PHP

Hi!guys
Today i want to talk about the php string variables and much more..................
so here we go.................................
 look like the following example......................................................................
<?php
$text="My name is xyz" ;

echo $text;


?>
 string written in double quotes or single quote


Tuesday, 26 February 2013

PHP:Variables scope

Lecture #4

Hi!
guys today i want to talk about the the PHP variable scope
so here we go.........................................................................................
There are four scope of php variables
  1. Local
  2. global
  3. static
  4. parameter
so i discuss one by one below as:

     1.Local scope

If any variable declare in the function of php then we say that it's life is affilicate with the php function and it's scope is local .not accessible from the out side the php function
like as

<?php
$n=10;//global scope


 function myfun()
{$h=7;//local scope of the variable


}
myfun();

 ?>

Static scope of variable


<?php
 function myfun()
{
static $n=0;//static scope of variable and static declaration
echo $n;
$n++;

}
myfun();
myfun();
myfun();


?>

parameter scope

<?php
 function myfun($x)
{
echo $x;

}

myfun(5);
?>



for learning subscribe my blog feed..




Sunday, 24 February 2013

PHP:Variables

Lectures#3

Hi!guys today i want to talk about the Variables of the PHP......................................

so here we go..........................................................................

PHP variables like a constraints use for sorting information....

see example below..................................................................................

<?php

$a=10;
$b=5;
$c=$a+$b;
echo $c;

?>

echo is used for print purpose...................

It is related to................algebra
 like a=10;
        b=5;
       c=a+b;
c=15 Result


  •  A variable start with the sign $ followed by the variable like  $a
  •  A variable name must start with letter or the underscore character
  • Variable contain alpha numeric character and underscore character
  • A variable name does not contain space
  • Variable names are case sensitive ($a and $A)
 Declaring PHP variable

It is not a command for declaring variable...
  variable is created as

$s="text-here";
 $a=5;

Above the two variable is  declare

 when $s is executed then text-here value is print
and when $a is executed then  value is 5..........

PHP Variables Scopes
  • Local
  • Global
  • Static
  • Parameter


  To be continued ......................................


For learning PHP and other Programing languages ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,subscribe my bloger feed..
                 

                                    Thanks





Saturday, 23 February 2013

PHP:Installation

Lecture #2

Hi!guys
Today i want to talk how to install the PHP on your personal computer
So here we go.........................

First of all you guys must install the following....................................
  1. Install the webserver
  2. Install PHP
  3. Inastall the database such as a MySQL
The official website how to install the PHP is following
                                              
                                    http://php.net/manual/en/install.php

PHP syntax

first you guys must know  what is Syntax :Syntax is rules  which you must be follow...

PHP syntax is writee any where in the document :
PHP script
 start as
<?php
 and
end as
?>

for example as
<?php
//code is here
?>

php file extension .php


little example is here
<html>//main tage of html: open tage of html
 <body>
 <h1> PHP example</h1>
 <?php   
 echo "helo world";
?>
</body>


</html>



                 Join my blog feed to start learning programing languages totally free



Friday, 22 February 2013

PHP:introduction

1st lecture..................................................................................................
Hi!guys
Today i want to talk about PHP..................................................................
 So here we go..............................................................................................

For PHP learning first of all you guys must know about the basic knowledge of the following..
  1. HTML
  2. Java script
What is PHP?

  • PHP stands for hypertext preprocessor.PHP is widely used as a scripting language.
  • Its scripts executed on the server side and easy to use and download
  • PHP files extension is .php and can contain html,java script text,php code
  • PHP file executed on the server side and result returned to the browser  as a plain html
  • PHP can generate the dynamic page content
  • You guys can create,open,write,read and close file on the server side using PHP
  • You guys can add,delete or modify file in the database using PHP
  • You guys can receive and send cookies using PHP
  • You guys can restrict the user to access the some pages on your sites using PHP
  • You guys can encyrpt data using PHP
  • You guys can collect form data using PHP
  • PHP is a platform independent mean to say you guys run php script any platform like windows,Unix,Lunix ..........etc
  • PHP is not limited to the output of html,you can output pdf file,flash movies,images,text,,ete 
  •  PHP is compatible with all the common servers (Apache,IIS...etc)
  • Support for wide range of database




                               To be continued ....................................


If you guys want to learn PHP and other programing languages so hurry up and join my blog feed ..
and start learning thanks

share with friends...................................................................................................