Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
20% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #11.7K
Ranked #4K
~2K People Reached
Favorite Tags

6 Posted Topics

Member Avatar for iquallsama

There are lots of tool available for creating responsive websites. But in my opinion is bootstrap is the better choice for doing this.

Member Avatar for vinod1
0
251
Member Avatar for surfingturtle

If you want to be become a web developer or web designer my advice for yo go to these links. 1:w3school 2:lynda.com Both are very good sites for learning web development and web designing.

Member Avatar for BibhutiAlmighty
0
457
Member Avatar for uselessninja

Try this code: Processor.php <?php $con=mysqli_connect("example.com","peter","abc123","my_db"); // Check connection if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } mysqli_query($con,"INSERT INTO Persons (FirstName, LastName, Age) VALUES ('Peter', 'Griffin',35)"); mysqli_query($con,"INSERT INTO Persons (FirstName, LastName, Age) VALUES ('Glenn', 'Quagmire',33)"); mysqli_close($con); ?> Registration.php <html> <body> <form action="insert.php" method="post"> Firstname: <input …

Member Avatar for diafol
0
312
Member Avatar for samalahyd

Try this: Update.php <?php $con=mysqli_connect("example.com","peter","abc123","my_db"); // Check connection if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } mysqli_query($con,"UPDATE Persons SET Age=36 WHERE FirstName='Peter' AND LastName='Griffin'"); mysqli_close($con); ?>

Member Avatar for mesh457
0
286
Member Avatar for Islamis
Member Avatar for sribharath_1

I think adobe dreamweaver and notpad++ both are good software for web designing.

Member Avatar for mesh457
0
152

The End.