Tag Archives: Php

How to put your data in a href link and use it in PHP?

Being an Online programmer, one important thing we must know is on how to bring your data into different pages. Sadly, in PHP every time we click the submit button the page will reload and all the data  being insert … Continue reading

Posted in HTML Tutorial, PHP Tutorial, Script | Tagged , , , , , | 1 Comment

How to make Div be seen in whole page

Sometimes in our web pages we want something that can always be seen in our page even when we scroll it down. Like for example the footer, the sidebar or maybe a link for your comment box. With this script … Continue reading

Posted in CSS | Tagged , , , , , | Leave a comment

PHP-Echo 2

Now you know how to print your text using Php but that doesn’t enough. let us make it a little bit more tricky. Now, Ill teach you how to print anything inside a variable. Example: <?php $mystring=”Hello cbautista.info”; $myinteger=7; Echo … Continue reading

Posted in PHP Tutorial | Tagged , , , | Leave a comment

PHP-Echo

After learning the proper declaration of variables, another basic command in php is the Echo command. This command will allow you to print everything. Here are the examples how to use the echo command. Example: <?php Echo “Hello christianbautista.info”; ?> … Continue reading

Posted in PHP Tutorial | Tagged , | Leave a comment

Variables

In this tutorial you will learn how to declare variables in php. Php has different types of variables Integer, float, String and etc we will talk about this later. This is the sample declaration of variables. Example: $mystring=”Hello cbautista.info”; $mystring2=”7”; … Continue reading

Posted in PHP Tutorial | Tagged , , , , | 1 Comment