awsome..I was making each file, funny.
slight change to code to remove / when using an apostrophe.
might be able to done in pass, not sure thoughCode:<?php $item = $_GET['item']; if (!$item) $item = "You"; $item2 = str_replace("-", " ", $item); $item2 = stripslashes($item2) //<< remove slash ex. mike's ?>
Also to track if someone viewed the page I get an email each time the page to opened..pput this at top of page.
Code:<?php $to = "youremail.com"; $subject = $item2 ." Opened Page"; $body = "Customer View page!"; mail($to, $subject, $body) ?>
$item2 = ucwords(strtolower($item2));
<?php
$item = $_GET['item'];
if (!$item) $item = "You";
$item2 = str_replace("-", " ", $item);
$item2 = ucwords(strtolower($item2));
?>
<?php
$to = "[email protected]";
$subject = $item2 ." Opened Page";
$body = "Customer View page!";
mail($to, $subject, $body)
?>
awsome..I was making each file, funny.
slight change to code to remove / when using an apostrophe.
might be able to done in pass, not sure thoughCode:<?php $item = $_GET['item']; if (!$item) $item = "You"; $item2 = str_replace("-", " ", $item); $item2 = stripslashes($item2) //<< remove slash ex. mike's ?>
Also to track if someone viewed the page I get an email each time the page to opened..pput this at top of page.
Code:<?php $to = "youremail.com"; $subject = $item2 ." Opened Page"; $body = "Customer View page!"; mail($to, $subject, $body) ?>