Posts tagged as "MySQL"
Difference between php mysql functions mysql_fetch_object(), mysql_fetch_assoc() and mysql_fetch_array()
Some of my friends are asked me. What’s difference between php functions mysql_fetch_object(), mysql_fetch_assoc() and mysql_fetch_array()? and how to use it ? If you also don’t known about it , please have a look example codes below. I think you would understand it. mysql_fetch_object() while ($each= mysql_fetch_object($result)) { echo $each->first_name; echo $each->last_name; } mysql_fetch_assoc() while [...]
Get Unlimited Parent and Child in PHP
Well, let me ask you first. Have you already known about recursion? If not, recursion mean reuse function in this function. How is it ? For eg Like function one_function ($var){ one_function(332); } OK , So , how to related with this post title ? I would like to say absolutely related with recursion. Let’s [...]
MySQL next and previous record of the current record
I have thought a lot these days what I should write some tips for beginner. Now, I got it. Have you ever noticed when you visiting and reading on some blogs? You will see previous and next links of current post. I don’t mean pagination links. If you have seen , have you ever thought [...]
Output XML using PHP from MySQL database
Firstly, Let me talk about this post. If your advance level php programmer, this is a piece of cake for you. I would like to say this post for beginner level. It would be a little difficult for a beginner. You may need xml output when you want to integrate with flash and MySQL records [...]
PHP Pagination
I have look for php pagination source. I got one very nice source code from Stranger Studio. That very nice code if your have a lot of records. You can see at sample preview. However, this is a lot of lines in the file. If you want to put into a lot of pages, all [...]
Made by Symmetric Web
Distributed by Smashing Magazine