PDA

View Full Version : Need some basic html!!


Dark Lycan
12-08-2012, 09:59 AM
hey guys I need some basic html and php code for html blocks, can anyone provide me with the code I need plz??




Thank you!!!

Dark Lycan

Simon Lloyd
12-08-2012, 04:46 PM
At the risk of sounding bad - "it all depends on what you want", you have to admit that "i want some html and php code" is ambiguous and you'd never get what you need as you haven't asked for anything specific :)

Dark Lycan
12-09-2012, 05:08 AM
At the risk of sounding bad - "it all depends on what you want", you have to admit that "i want some html and php code" is ambiguous and you'd never get what you need as you haven't asked for anything specific :)

oh sry, I want some html code so I can create a home page on my site and my bros site, and I need html for html blocks. if you can make it a combo of html, php and divs just the basic kind that would be great. I'm not asking for some really complex code I just need basic code to do what I need.:D

Thank you!?^ ^

Simon Lloyd
12-09-2012, 06:10 AM
Again this wont get you what you want, but.....<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>My Page</title>
<?php
function somefunction(onsomething){

$sf = someaction(onsomething);

}
?>
</head>
<body>
<table>
<tr><td>This is some text</td>
<td>This is more text</td>
<td>Even more text</td></tr>
<tr><td>This is in a new place</td></tr>
</table>
<div>This is a div<div>This is another div
</div>
</div>
<div>this is a standard div</div>
<div> this is a div showing the result of the php function <?php echo $sf; ?> </div>
</body>
</html>It's not going to help you, there's no formatting no padding, spacing, sizes or atributes, there's no id's or classes, there's no css.....etc.

To be honest, if you're not comfortable with php or html then you're best hiring someone to do it or work through some stuff at http://www.w3schools.com/

Dark Lycan
12-09-2012, 06:20 AM
Again this wont get you what you want, but.....<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>My Page</title>
<?php
function somefunction(onsomething){

$sf = someaction(onsomething);

}
?>
</head>
<body>
<table>
<tr><td>This is some text</td>
<td>This is more text</td>
<td>Even more text</td></tr>
<tr><td>This is in a new place</td></tr>
</table>
<div>This is a div<div>This is another div
</div>
</div>
<div>this is a standard div</div>
<div> this is a div showing the result of the php function <?php echo $sf; ?> </div>
</body>
</html>It's not going to help you, there's no formatting no padding, spacing, sizes or atributes, there's no id's or classes, there's no css.....etc.

To be honest, if you're not comfortable with php or html then you're best hiring someone to do it or work through some stuff at http://www.w3schools.com/

alright well thx for tryin to help anyway.^^