This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#51 2011-10-10 03:15:44

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

neutral  I like hotdogs.

?  What's that about?


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#52 2011-10-10 03:21:46

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

Does your website maker have an actual name, or is it the cyberkidscountry or whatever website maker??


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#53 2011-10-10 03:23:27

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

Does your website maker have an actual name, or is it the cyberkidscountry or whatever website maker??

SIMPLwebeditor :S
I just haven't implement it yet  tongue

Last edited by ssss (2011-10-10 03:23:41)


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#54 2011-10-10 03:25:35

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

ssss wrote:

WindowsExplorer wrote:

Does your website maker have an actual name, or is it the cyberkidscountry or whatever website maker??

SIMPLwebeditor :S
I just haven't implement it yet  tongue

do you know how to make links in an alert("some text") in javascript? It always shows the <a href='link'>some text</a> insted of some text?


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#55 2011-10-10 03:27:35

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

ssss wrote:

WindowsExplorer wrote:

Does your website maker have an actual name, or is it the cyberkidscountry or whatever website maker??

SIMPLwebeditor :S
I just haven't implement it yet  tongue

do you know how to make links in an alert("some text") in javascript? It always shows the <a href='link'>some text</a> insted of some text?

Simple anwser: You can't.  Do it with a popup instead  wink


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#56 2011-10-10 03:28:05

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

ssss wrote:

WindowsExplorer wrote:

ssss wrote:


SIMPLwebeditor :S
I just haven't implement it yet  tongue

do you know how to make links in an alert("some text") in javascript? It always shows the <a href='link'>some text</a> insted of some text?

Simple anwser: You can't.  Do it with a popup instead  wink

how do I make a popup?


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#57 2011-10-10 03:31:04

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

ssss wrote:

WindowsExplorer wrote:


do you know how to make links in an alert("some text") in javascript? It always shows the <a href='link'>some text</a> insted of some text?

Simple anwser: You can't.  Do it with a popup instead  wink

how do I make a popup?

o.O

Code:

<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
    newwindow=window.open(url,'name','height=200,width=150');
    if (window.focus) {newwindow.focus()}
    return false;
}

// -->
</script>

Then link to:

Code:

<a href="popupex.html" onclick="return popitup('popupex.html')"
    >Link to popup</a>

o.Oor:

http://stackoverflow.com/questions/1733 … ript-alert

I suggest using the link first.  wink


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#58 2011-10-10 13:26:29

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

ssss wrote:

WindowsExplorer wrote:

ssss wrote:


Simple anwser: You can't.  Do it with a popup instead  wink

how do I make a popup?

o.O

Code:

<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
    newwindow=window.open(url,'name','height=200,width=150');
    if (window.focus) {newwindow.focus()}
    return false;
}

// -->
</script>

Then link to:

Code:

<a href="popupex.html" onclick="return popitup('popupex.html')"
    >Link to popup</a>

o.Oor:

http://stackoverflow.com/questions/1733 … ript-alert

I suggest using the link first.  wink

Could you please post the code for the welcome.php on your site again? I deleted it by mistake  sad


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#59 2011-10-11 02:54:32

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

ssss wrote:

WindowsExplorer wrote:


how do I make a popup?

o.O

Code:

<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
    newwindow=window.open(url,'name','height=200,width=150');
    if (window.focus) {newwindow.focus()}
    return false;
}

// -->
</script>

Then link to:

Code:

<a href="popupex.html" onclick="return popitup('popupex.html')"
    >Link to popup</a>

o.Oor:

http://stackoverflow.com/questions/1733 … ript-alert

I suggest using the link first.  wink

Could you please post the code for the welcome.php on your site again? I deleted it by mistake  sad

roll 
At the moment, I am fully updating it.  That means starting from scratch, because somewhere along the line I screwed up.  However, this means that when I do fix all my code up, you will see it.  wink


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#60 2011-10-11 02:56:04

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

just post it anyway. pleeeeeeease


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#61 2011-10-11 03:03:46

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

just post it anyway. pleeeeeeease

Well this is embarrassing. I screwed my own code up.

Code:

<html>
<link href="<?php echo $_GET["css"]; ?>" rel="stylesheet" type="text/css" />
<head><title><?php echo $_GET["title"]; ?></title></head>
<body bgcolor="<?php echo $_GET["bgcolor"]; ?>"><div id="header"><h1><?php echo $_GET["header"]; ?></h1></div>
<span style="font-size: <?php echo $_GET["fontsize"]; ?>;" color="<?php echo $_GET["fontcolor"]; ?>" face="<?php echo $_GET["fontfamily"]; ?>">
<?php echo $_GET["content"]; ?> </font>

<div id="footer"><?php echo $_GET["footer"]; ?> | This site is powered by <a href='http://cyberkidscountry.com/phpeditor'>CyberKidsCountry PHPeditor</a>! <!-- Removal of this copyright notice is not permitted--></div>
</body>
</html>

Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#62 2011-10-11 03:06:45

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

What does your code do now?


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#63 2011-10-11 03:07:34

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

What does your code do now?

Same thing.  Just a few things like bgcolor don't work.  but that code is outdated anyway.


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#64 2011-10-11 03:21:30

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

ssss wrote:

WindowsExplorer wrote:

just post it anyway. pleeeeeeease

Well this is embarrassing. I screwed my own code up.

Code:

<html>
<link href="<?php echo $_GET["css"]; ?>" rel="stylesheet" type="text/css" />
<head><title><?php echo $_GET["title"]; ?></title></head>
<body bgcolor="<?php echo $_GET["bgcolor"]; ?>"><div id="header"><h1><?php echo $_GET["header"]; ?></h1></div>
<span style="font-size: <?php echo $_GET["fontsize"]; ?>;" color="<?php echo $_GET["fontcolor"]; ?>" face="<?php echo $_GET["fontfamily"]; ?>">
<?php echo $_GET["content"]; ?> </font>

<div id="footer"><?php echo $_GET["footer"]; ?> | This site is powered by <a href='http://cyberkidscountry.com/phpeditor'>CyberKidsCountry PHPeditor</a>! <!-- Removal of this copyright notice is not permitted--></div>
</body>
</html>

hey. links keep going to plaxon.comyr.com/\"link\"


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#65 2011-10-11 03:24:08

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

ssss wrote:

WindowsExplorer wrote:

just post it anyway. pleeeeeeease

Well this is embarrassing. I screwed my own code up.

Code:

<html>
<link href="<?php echo $_GET["css"]; ?>" rel="stylesheet" type="text/css" />
<head><title><?php echo $_GET["title"]; ?></title></head>
<body bgcolor="<?php echo $_GET["bgcolor"]; ?>"><div id="header"><h1><?php echo $_GET["header"]; ?></h1></div>
<span style="font-size: <?php echo $_GET["fontsize"]; ?>;" color="<?php echo $_GET["fontcolor"]; ?>" face="<?php echo $_GET["fontfamily"]; ?>">
<?php echo $_GET["content"]; ?> </font>

<div id="footer"><?php echo $_GET["footer"]; ?> | This site is powered by <a href='http://cyberkidscountry.com/phpeditor'>CyberKidsCountry PHPeditor</a>! <!-- Removal of this copyright notice is not permitted--></div>
</body>
</html>

hey. links keep going to plaxon.comyr.com/\"link\"

I'd need to see your code.


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#66 2011-10-11 03:24:47

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

Code:

<html>
<link href="gphp.css" rel="stylesheet" type="text/css" />
<link href="<?php echo $_GET["style"]; ?>" rel="stylesheet" type="text/css" />
<head><title><?php echo $_GET["title"]; ?></title></head>
<body bgcolor="<?php echo $_GET["bgcolor"]; ?>"><div id="header"><h1><?php echo $_GET["header"]; ?></h1></div>
<span style="font-size: <?php echo ''.$_GET["fontsize"].''; ?>;" color="<?php echo $_GET["fontcolor"]; ?>" face="<?php echo $_GET["fontfamily"]; ?>">
<?php echo $_GET["content"]; ?> </font>

<div id="footer"><?php echo $_GET["footer"]; ?> | Created with <a href="javascript:info()">GenPHP</a><!-- Removal of this copyright notice is not permitted--></div>
</body>
</html>
<script type="text/javascript">
function info() {
alert("GenPHP (plaxon.comyr.com/gphp) is based on SIMPLwebeditor (cyberkidscountry.com/phpeditor)");
}
</script>

http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#67 2011-10-11 03:27:08

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

That's odd.  Because on mine, it works fine.  Although, you might want to put your <link href>'s inside the head tag  wink


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#68 2011-10-11 03:29:52

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

ssss wrote:

That's odd.  Because on mine, it works fine.  Although, you might want to put your <link href>'s inside the head tag  wink

Could you do it for me, I'm not sure what you mean by putting a link there.


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#69 2011-10-11 03:31:08

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

ssss wrote:

That's odd.  Because on mine, it works fine.  Although, you might want to put your <link href>'s inside the head tag  wink

Could you do it for me, I'm not sure what you mean by putting a link there.

:S.  It's as simple as:

Code:

<html>
<head><title><?php echo $_GET["title"]; ?></title>
<link href="gphp.css" rel="stylesheet" type="text/css" />
<link href="<?php echo $_GET["style"]; ?>" rel="stylesheet" type="text/css" />
</head>
<body bgcolor="<?php echo $_GET["bgcolor"]; ?>"><div id="header"><h1><?php echo $_GET["header"]; ?></h1></div>
<span style="font-size: <?php echo ''.$_GET["fontsize"].''; ?>;" color="<?php echo $_GET["fontcolor"]; ?>" face="<?php echo $_GET["fontfamily"]; ?>">
<?php echo $_GET["content"]; ?> </font>

<div id="footer"><?php echo $_GET["footer"]; ?> | Created with <a href="javascript:info()">GenPHP</a><!-- Removal of this copyright notice is not permitted--></div>
</body>
</html>
<script type="text/javascript">
function info() {
alert("GenPHP (plaxon.comyr.com/gphp) is based on SIMPLwebeditor (cyberkidscountry.com/phpeditor)");
}
</script>

That. :S


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#70 2011-10-11 03:42:39

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

Unfortunately, we finally part ways.  My coding now uses the $_POST function. :S


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#71 2011-10-11 03:51:31

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

not working  sad


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#72 2011-10-11 03:57:01

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

WindowsExplorer wrote:

not working  sad

:s .  You have completely stumped me.  It works perfectly for me.


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#73 2011-10-11 05:40:40

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

Haha!  I worked it out.  On yours, you have put the "  " things in already.  So instead of doing:

Code:

<a href="scratch.mit.edu>scratch</a>

You do:

Code:

<a href=scratch.mit.edu>scratch</a>

See the difference?


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#74 2011-10-11 10:33:52

rookwood101
Scratcher
Registered: 2011-07-29
Posts: 500+

Re: Beta: Free Html/php Based Website Creator!

ssss wrote:

Haha!  I worked it out.  On yours, you have put the "  " things in already.  So instead of doing:

Code:

<a href="scratch.mit.edu>scratch</a>

You do:

Code:

<a href=scratch.mit.edu>scratch</a>

See the difference?

Code:

<a href=http://scratch.mit.edu>scratch</a>

Now THAT is right

Last edited by rookwood101 (2011-10-11 10:34:18)


http://i.imgur.com/zeIZW.png

Offline

 

#75 2011-10-11 10:40:14

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Beta: Free Html/php Based Website Creator!

rookwood101 wrote:

ssss wrote:

Haha!  I worked it out.  On yours, you have put the "  " things in already.  So instead of doing:

Code:

<a href="scratch.mit.edu>scratch</a>

You do:

Code:

<a href=scratch.mit.edu>scratch</a>

See the difference?

Code:

<a href=http://scratch.mit.edu>scratch</a>

Now THAT is right

how come it works with the " " on yours, ssss?


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

Board footer