We need to show the menu or text every time we hover an object or menu. Example, we have a list of product in our Content Management System, those product list has menu to update and delete the products. But, the menu not appear. But when we move mouse over ...
According to the case posted by [url=http://www.daniweb.com/members/devindamenuka/909999]devindamuka[/url] on daniweb.com. I'm trying to make it by CSS. We can view the edit menu using CSS visibility or display.
[code]
View Edit Menu with CSS
.comment{margin : 10px 0; width : 400px; border : 1px solid #000000; padding : 5px;}
.comment span{display : block; visibility : ...
According to the problem posted in daniweb.com by [url=http://www.daniweb.com/members/obimobs/910602]obimobs[/url], i'm create an example simple login using php and mysql.
[code]
Login Form
Login Form Example
According to the problem posted in daniweb.com by [url=http://www.daniweb.com/members/Isti666/910230]Isti666[/url], actually all thing work properly.
[code]
MySQL Row Problem
Row Problem
Players Online
[/code]
See the result [url=http://www.leakbali.com/script/rowproblem.php]here..[/url]
According to the post of Gerbiler on Dani Web, that he have a problem with the CSS to style div element. His code look like this:
[code]
Header Template
div.header{
...
To create many links / menu with a few code, we can looping it from array data. First, we hold the link and also it text into associative array. Here is the simple code:
[code]
Create Menu with PHP Associative Array
Create Menu with PHP Associative Array
Here is PHP simple login form. In the code below we can see how the script work to make user can login into authenticate page.
[code]
Kelola Bukutamu
, Status () [
[/code]
You can download the complete files below:
Here an example of how to create a dynamic web page with HTML, CSS, and PHP. First we create an index.php file shown below:
[code]
Next step is creating a connection to database by create an external file called dbase.php place in database folder, shown below:
[/code]
Then we include meta.php file contained an ...
Here is a simple Guestbook with PHP and MySQL database. We learn how to create connection to MySQL database with PHP. First create a database called "myweb", then we create table called "guestbook".
[br]
[h3]Create database[/h3]
[code]
CREATE DATABASE `myweb` ;
[/code]
[br][br]
[h3]Create table[/h3]
[code]
CREATE TABLE `guestbook` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`name` VARCHAR( 30 ...
Here is a simple PHP Session to hold information from one single user and available in all pages. If we visit another pages, the data store in session variable available to access.[br]
When user input a data in a form, then session will hold the information and available in another pages. ...