PHP, Javascript - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Other (
https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (
https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: PHP, Javascript (
/showthread.php?tid=483784)
PHP, Javascript -
cnoopers - 27.12.2013
yo.
say, how can i write in new line, and how to create clickable url like
this?
Code:
<script language="javascript" type="text/javascript">
alert('This is what an alert message looks like.');
</script>
Re: PHP, Javascript -
iLinx - 27.12.2013
Code:
<a href="#" on‌click="alert()">link</a>
<script language="javascript" type="text/javascript">
function alert()
{
alert('This is what an alert message looks like.')
}
</script>
This has nothing to do with PHP though, just HTML/JS.
Re: PHP, Javascript -
cnoopers - 27.12.2013
so either how create like up window, but much less like a IPB, where be a pics, etc.?
Re: PHP, Javascript -
Isolated - 27.12.2013
I suggest you look into the language a bit more before attempting more advanced things. Learn the basics then attempt this.
Re: PHP, Javascript -
cnoopers - 27.12.2013
look, its off job for one project.
Re: PHP, Javascript -
Isolated - 27.12.2013
Well, learn the job for the one project then you can use it again. Don't expect to be spoon fed everything in life. Learn from reading articles and finding out for yourself in stead of relying on other people. If you need help after attempting then ask here or stackoverflow etc..