• Home
  • About
  • Job Profile
  • Portfolio
  • Training
Blue Orange Green Pink Purple

Archive for the ‘php’ Category

You can use the search form below to go through the content and find a specific post or page:

Apr 11

isset() use techniques in php

isset

isset() is the most commonly used php construct as well as a good friend of a programmer. we frequently use it to check whether a variable has been set or not. it returns true if the variable has been set otherwise false… also return false if the variable has been set to null.

isset() is the only one of the three language constructs that accepts an arbitrary amount of parameters. Its accurate prototype is as follows:

<?php
isset($var1, $var2, $var3, ...);
?>

It only returns true, if all the variables have been defined; otherwise, it returns false. This is useful when you want to check if the required input variables for your script have really been sent by the client, saving you a series of single isset() checks.

So writing it with arbitrary parameters can be interesting upon your need! cheers!

Apr 07

Interview question set for a advanced PHP Programmer

Recently, I got a chance to face some questions which make sense for a PHP Programmer, who can rethink all about web development what he has been learned yet. I thought i can share those among yourselves just for sharing that what could be the questions for a advanced PHP Programmer.

Questions are as follows. I will try to give answers here and discussion about these time to time. Looking forward to hear from you guys about any question listed below.

  • Question: You are committing a file with bug fixes to the SVN, there is an issue with a conflict in the file what does this mean? How do you solve it?
  • Question: How would you find out what files were out of date within SVN and commit those specific files into a revision with a log message via the command line?
  • Question: How do you use memcached to optimize mysql queries?
  • Question: How do you iterate an array in smarty?
  • Question: PHP errors are not displaying on the page you are developing. You only have SFTP Access to change files. How do you display the errors?
  • Question: What is better and more efficient in development time for a large scale enterprise PHP / MySQL application. Using packages and open source classes or developing your own solutions?
  • Question: What are the risks of using user inputted data in SQL queries and how to eliminate this risk ?
  • Question: You have been given a specification and been briefed on a project. The specification included work that was already completed for the project but there are many bugs and you did not write this code. What do you do?
  • Question: There is a bug in your code, what do you do?
  • Question: Recently users are complaining they are being logged out of the site. The site uses sessions and php. Also recently a new webserver was added, bringing the total to 2. What could be causing this and how would it be solved?
  • Question: You need to create a search function for a website with over 30.000 searches per hour on a record set of 1.000.000 text records. How would you do this using MySQL?
  • Question: You need to integrate an external website’s data that does not have a API – describe this process.
  • Question: You’ve written a news service in PHP that needs to used by many external websites. How would you allow those websites to use your functions to display the news on their site ?
  • Question: You want to create an AJAX suggestion box that displays in real time suggestions related to the content of the search textfield. Describe how this process would work.

I think, some questions are really good and every PHP Programmer should know about those terms.

Apr 05

Execute PHP code within a html/htm file

When a web page is call, the server checks two thongs, whether it is a html/htm file or a php/asp(etc) file. The key point is file extension or file type.If it is a normal .html/.htm file, server sends it direct to the browser. And if it is a php/asp(etc), server than execute the appropriate code before sending it to the browser.

Come to the point: Now you need to add some php code within your existing html file,then what is the process?
There are two ways, what i ever know and want to share with you,
1.Rename the html file to php file (the easiest way),
2.Using .htaccess file to allow php within html file.

if you follow the first one, it’s easy. but you may have incoming links or search engine ranking or if u change the file type, you need to change many code within your application.so in this situation, come to the second solution. ;)

The way is:
You need to add some command in your .htaccess file like below:
For html file :
AddType application/x-httpd-php .html

Or for .htm
AddType application/x-httpd-php .htm

If you only plan on including the PHP on one page, it is better to setup this way:
<Files myhome.html> AddType application/x-httpd-php .html </Files>

Example:
Now you can put php script like below in your html file :

<p id='php_cont'><?php echo "hi all"; ?></p>

N.B. Always be careful about your .htaccess file. if you have already one, just add the above command to the file, don’t replace all. and for beginner, the .htaccess file will be in your root folder, where your application or project exists (i.e. http://localhost/myapp)

That’s all. For very beginners it may be helpful and i think this is a common question for them that ‘How to use php in html file?’. cheers ;)

Mar 21

Get users IP by Getenv() PHP Function

Definition: Getenv () is used to get the value of an environmental variable. It is written as Getenv (varname) .

Below are some examples of environmental variables you can use. If you are interested, you can see a full list by running phpinfo ().

Also Known As: Get Environment Variable

Examples:

Get users IP by getenv() function. This is useful, when you want to know the users IP of your site during registration. By this you can know about users that, from where they are signing up or related information.

You can also track users during login that, every time users are logging in and you know from which area or IP they are access your site. So see the simple use of this function:

<?php
//Gets the IP address
$ip = getenv(“REMOTE_ADDR”) ;
Echo “Your IP is ” . $ip;
?>

<?php
//Gets the document root
$root = getenv(“DOCUMENT_ROOT”) ;
Echo $root;
?>

<?php
//Gets the server admin’s email
$ad = getenv(“SERVER_ADMIN”) ;
Echo $ad;
?>

Happy’s coding :)

Definition: Getenv () is used to get the value of an environmental variable. It is written as Getenv (varname) ;

Saif The Green

  • View Saif's profile on LinkedIn
  • Recent Posts
    • RESTful API – The HTTPish …
    • SUSE – another user-friendly desktop Linux distributions
    • SEO meta techniques for a wordpress blog
    • Set favicon in cross browser and more…
    • WordPress custom URL rewrites and tips
  • Archives
    • October 2016
    • August 2016
    • August 2014
    • July 2014
    • April 2014
    • June 2013
    • April 2013
    • March 2013
  • Categories
    • CodeIgniter
    • Javascript
    • Linux
    • MySQL
    • opencart
    • php
    • SEO
    • Software Development
    • Web Development
    • Web Services
    • Wordpress
  • Meta
    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org
  • Archives
    • October 2016
    • August 2016
    • August 2014
    • July 2014
    • April 2014
    • June 2013
    • April 2013
    • March 2013
  • Search







Saif The Green is proudly powered by WordPress
Entries (RSS) and Comments (RSS).