PravinS
-
Posts
459 -
Joined
-
Last visited
-
Days Won
2
Community Answers
-
PravinS's post in Messed up code due to php 7 was marked as the answer
You haven't passed link identifier returned by mysqli_connect() to mysqli_query() function
Check Manual for more details: http://php.net/manual/en/mysqli.query.php
-
PravinS's post in Intents in HTML was marked as the answer
Try this
<html> <head> <style type="text/css"> .colleft{ float:left; width:50%; text-align:left } .colright{ float:right; width:50%; text-align:right; } </style> </head> <body> <div> <div class="colleft">Left</div> <div class="colright">Right</div> </div> </body> </html>