Ben html sayfasından bir form göndererek zaman içeride bir php sayfasını görüntüleyen bir iframe var.
Bazı php kod ile bağlantıları stil mümkün mü? eğer öyleyse, nasıl?
Teşekkürler
Sadece PHP'nin echo
to add some internal veya inline CSS stillerini kullanın.
("Yorumlu metin" sözdizimi kullanarak) bir örnek:
echo <<<END
<style type="text/css">
a:link { color: blue; text-decoration: none; }
a:visited { color: blue; text-decoration: none; }
a:hover { color: red; text-decoration: underline; }
a:active { color: red; text-decoration: underline; }
</style>
END;
Veya bu tür bir şey.