Hi everyone, I need a nudge in the right direction if anyone can help please
PHP Help Please
3
Hi everyone,
I need a nudge in the right direction if anyone can help please
I am trying to output different H1 headers on my page based on the page id.
For example, if someone lands on my page
example.com/landingpage.php?id=1
I would like to display H1 version 1.
landingpage.php?id=2 would show H1 version 2 ETC. So far I have
Now I want to output the title on my page like this
But I think the echo is making it display at the top of my page
Can anyone help me out please?
Thanks
I need a nudge in the right direction if anyone can help please
I am trying to output different H1 headers on my page based on the page id.
For example, if someone lands on my page
example.com/landingpage.php?id=1
I would like to display H1 version 1.
landingpage.php?id=2 would show H1 version 2 ETC. So far I have
HTML Code:
<?php
$h1=$_GET['id'];
if ($h1 == "1") {
echo "headline 1";
}
if ($h1 == "2") {
echo "headline 2";
}
elseif ($h1 == "3") {
echo "headline 3";
}
elseif() blocks
else {
echo "default headline";
}
?> HTML Code:
<h1><?php echo($_GET["h1"]) ?></h1>
Can anyone help me out please?
Thanks
- WebMarketingTool
- [1] reply
- David Beroff
- [1] reply
Next Topics on Trending Feed
-
3