Jump to content

PHP doesnt recognize css


quelle

Recommended Posts

Actually i insert my css into the heading of my php site, the first one recognizes it the second one doesnt ... zomg. Dreamweaver shows it does but when i fill my form and click on submit it stays the "undefined" look at the code

?>
<h1>Vaši rezultati kviza su sljedeći:</h1>
<?php
function postotak($bodovi_ufun, $ukupno_ufun){
$p = $bodovi_ufun / $ukupno_ufun;
$postotak = $p * 100;
$postotak = round($postotak) . "%";

return $postotak;
}
//IF I PUT HERE TEXTBOX
echo '<b>Vaš ukupan broj bodova jeste ' . $bodovi . ' to je procentualno ' . postotak($bodovi, $ukupno);
//AND FINISH HERE, IT GETTING SHOWED IN DREAMWEAVER BUT NOT IN MY BROWSER WHY ?
?>

Link to comment
https://forums.phpfreaks.com/topic/222453-php-doesnt-recognize-css/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.