[PHP Service] Coding scripts for you ! [MyScripts]

Status
Not open for further replies.

StrongFaith

New Member
Jul 11, 2010
48
0
MyScripts Service

Hello , i am doing a service for coding scripts in PHP (with SQL and HTML).
Request your script and i will give you the source.
The request should include :

  • Script name (EX: Emailing)
  • SQL or non SQL
  • Language (PHP or HTML).

Scripts wont include a design (CSS).
Don't be noob by requesting non-PHP or non-HTML scripts.
Please post ONLY your request!
All scripts are only 1 page.

Thank you.

Edit {
Also after i have coded the scripts , if you see some things that you have not requested , post them and i will improve!
}

Edit 2 {
Please dont request habbo scripts , as i left it.
}
 

Jo$h

Posting Freak
Jul 7, 2010
1,030
79
Please elaborate more on what you are going to code. I would understand that you wouldn't code a whole CMS and stuff, so pleae give us some Limitations.
 

StrongFaith

New Member
Jul 11, 2010
48
0
@Dylan {
No CSS.
moving text :
HTML:
<marquee>Hello , your text here!</marquee>
}

@Jo$h {
Script = Not CMS!
Also learn to read :
All scripts are only 1 page.
}

EDIT:

@Dylan {
ill just give you a simple html box with moving text.
HTML:
<fieldset>
<legend>My box</legend>
<marquee>Hello , your text here!</marquee>
</fieldset>
 

StrongFaith

New Member
Jul 11, 2010
48
0
@Kryptos {
I will start the work now.
}
@smartguy88 {
I can code chatbox but that wont be creative because for new messages you should refresh! (im speaking about PHP). If you have any other request post it ;)
}

EDIT
@Kryptos {
i tried to make it advanced just for you :).
PHP:
<?php
        $id = $_GET['id'];
        if(!$id) {
	include("./core.php"); // mysql settings.
	$getnews = mysql_query("SELECT * FROM news"); // query for the news.
	while($article = mysql_fetch_array($getnews)) {
		echo "<fieldset>";
		echo "<legend>".$article['title']."</legend>";
		echo "<p>".$article['title']."was posted at category <i>".$article['category']."</i> at ".$article['date']."</p>";
		echo "<p>".substr($article['story'], 0, 30)."</p>";
		echo "<p><b>-".$article['author']."</b></p>";
		if(strlen($article['story']) > 30) {
			echo "<p><a href='?id=".$article['id']."'>Read more detailed about the article</a></p>";
		}
		echo "</fieldset><br /><br />";
	}
	$a = mysql_num_rows($getnews);
	if($a == "0") {
		echo "<p>No article has been written yet.</p>";
	}
        }
	if($id) {
		$getnews2 = mysql_query("SELECT * FROM news WHERE id = '".$id."'");
		while($article2 = mysql_fetch_array($getnews2)) {
			echo "<fieldset>";
			echo "<legend>".$article2['title']."</legend>";
			echo "<p>".$article2['title']."was posted at category <i>".$article2['category']."</i> at ".$article2['date']."</p>";
			echo "<p>".$article2['story']."</p>";
			echo "<p><b>-".$article2['author']."</b></p>";
			echo "</fieldset><br /><br />";
			if($id !== $article2['id']) {
				echo "<p>Wrong article selected!</p>";
			}
		}
	}
?>
 

Kryptos

prjRev.com
Jul 21, 2010
2,205
1,252
Mhm... That isn't a Model-View-Controller framework.. Thats just a normal page.

I actually made my own, and I wanted to see if you could do it better -
 

StrongFaith

New Member
Jul 11, 2010
48
0
Ohwlol , bro sorry i forgot while coding it , i will code it like that , belive me i forgot that i should code it that way. BRB , getting in work now!

Edit {
Actually MVC takes more hardly work and should be coded with very good concentration . Anyway don't worry , i will code it and release it as a special release. Thank you for giving me some work :p
}

Please request scripts that does not take much time , and ones that you will use for fun

Requests that takes more time will be released as special releases . You will get credits for them
 

Mac

New Member
Feb 9, 2011
111
2
Lol , i haven't started it . I will soon , i'm learning more about MVC in coding school.

Also , i will release it as special release . Close thread as service closed and also i made new account.

OFT:
Wtf , i got 1 post only ?

[MOD] Thread Closed Upon Request [/MOD]​
 
Status
Not open for further replies.

Users who are viewing this thread

Top