How can I do so that from a php
modify a value of css
I have a simple user access form, but I want that when checking that this user is registered, a div
that was previously hidden in which will have different links and options appears.
Next I show what has occurred to me. Since I only knew how to do this with JS
I tried to do it that way. How would it be done?
if ($filas>0) {
header("location: index.html");
<script type="text/javascript">
$('#sub-header').fadeOut();
</script>
}else{
header("location: index.html");
}
How to make modifications from php
. Since JS
I have no problem, but I can not think of how to do it from here.
Cheers!