-
Re: [GALLERY] Rob's WIPs
Tweek is right. My fucking 3d teacher was making us model this face using polygons, and I said, "um miss why can't I just traingulate it, it seeing as everyone is getting massive smoothing and normal errors and the like?". "NONONONO WRONG THAT IS WRONG NO TRIS ALLOWED IN 3D MODELLING EVER AVOID AT AL COSTSSSS"
:everyone elses model in the class BUT mine looks like shit because I didn't follow orders:
:3
-
Re: [GALLERY] Rob's WIPs
liked the one on the left moar D:
-
Re: [GALLERY] Rob's WIPs
you crazy upsidedownians, up and posting in the middle of the night.
ohwait-
FUCK INSOMNIA
-
Re: [GALLERY] Rob's WIPs
Arg, all this photoshop slicing and dreamweaver crap makes me angry. That's not how you make a website.
This is how you make a website:
Code:
include("../model/config.php");
include("../model/dbconfig.php");
include("../business/functions.php");
include("../business/Templates.php");
include("../business/checkLogin.php");
setRedirect("spacebrickPM/inbox.php");
include("private/PrivateMessage.php");
html("Inbox");
PrivateMessage::printStyleAndScript();
layoutTopMenu($horizontalMenu);
PrivateMessage::printMessageListAjax($_SESSION['my_index']);
layoutTopMenu(false);
html();
==> makes

e: lolwtf ubuntu took a screenshot of the screenshot taker thing.
-
Re: [GALLERY] Rob's WIPs
...I think I will stick to basic HTML Lol.
Keep it simple, e.g. <img src=""> <a href=""></a>
Lol. I will stay at the level thanks.
-
Re: [GALLERY] Rob's WIPs
heh, and that was the simplest part of it. Wait til I show you the actual PrivateMessage class. ;D
e: here, html for u:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>spacebrick.net - Inbox</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="http://localhost/php/spacebrick/web/slate.css" rel="stylesheet" type="text/css">
</head>
<body>
<link type="text/css" rel="stylesheet" href="http://localhost/php/spacebrick/spacebrickPM/web/spacebrickPM.css">
<script type="text/javascript">
var basedir='localhost/php/spacebrick/';
var pmdir='spacebrickPM/';
</script>
<script type="text/javascript" src="http://localhost/php/spacebrick/spacebrickPM/web/spacebrickPM.js">
</script>
<script type="text/javascript" src="http://localhost/php/spacebrick/spacebrickPM/web/circularStack.js">
</script>
<script type="text/javascript" src="http://localhost/php/spacebrick/spacebrickPM/web/spacebrickPMAjax.js">
</script>
<div class="outerContainer hfill" id="outerContainer">
<table border="0" cellspacing="0" cellpadding="0" class="outerTable hfill">
<tr><td class="outerTD hfill" align="center">
<div class="innerContainerWide">
<table border="0" cellspacing="0" cellpadding="0" class="hfill">
<tr><td class="topMenuBar">
<form action="http://localhost/php/spacebrick/changeTheme.php" method="post" id="themeForm">
<p><a href="javascript:themeFormSubmit()">select theme</a>:<br />
<select name="theme" onChange="themeFormSubmit()">
<option value="0" selected='selected'>slate</option>
<option value="1">noimg</option>
<option value="2">simple</option>
<option value="3">blank</option>
</select>
<input type="submit" style="display:none;"></p>
</form>
<script type="text/javascript">
<!--
function themeFormSubmit() {
document.getElementById("themeForm").submit();
}
//-->
</script>
</td><td class="topMenuBar hfill"><h2><a href="http://localhost/php/spacebrick/">spacebrick.net</a></h2>
</td><td class="topMenuBar topLoginMenu"> <div class="coverAlert bgi2" id="loginAlert" style="visibility:visible">
<p>This website requires Javascript.</p>
<a class="inPage" href="http://localhost/php/spacebrick/help.php#javascript">Click here for info.</a>
</div>
<div class="coverAlert bgi2" style="display:none;" id="timeoutWarning">
<p>Your session is about to expire.<br />
<a class="inPage" href="javascript:ajaxLogin()">Click here</a> to refresh your session and remain logged in- you will not lose any work on this page.</p>
</div>
<div class="coverAlert bgi2" id="timeoutAlert" style="display:none;">
<p>Your session has expired.</p>
</div>
<p class="note" id="usercp">logged in as: <a href="http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar">rob_oplawar</a>
<a href="http://localhost/php/spacebrick/usercp.php" class="block">user control panel</a>
<a href="http://localhost/php/spacebrick/logout.php" class="block">logout</a></p>
<form action="http://localhost/php/spacebrick/login.php" method="post" id="loginForm" class="topLoginMenu">
<p class="note" style="display:none;" id="loginMenu"><a href="javascript:loginFormSubmit()" class="block">login:</a>
<input type="text" value="username" name="username" onFocus="focusUsername()" style="width:100%" /><br />
<input type="password" name="password" style="width:100%" /><br />
<input type="submit" style="display:none;" /></p>
</form>
<script type="text/javascript">
<!--
function focusUsername() {
if(document.getElementById("loginForm").username.value=="username") document.getElementById("loginForm").username.value="";
}
function loginFormSubmit() {
document.getElementById("loginForm").submit();
}
document.getElementById("loginAlert").style.visibility="hidden";
var timer;
function warnTimeout() {
document.getElementById("timeoutWarning").style.display="block";
timer=setTimeout("alertTimeout()",60000);
}
function alertTimeout() {
document.getElementById("timeoutWarning").style.display="none";
document.getElementById("timeoutAlert").style.display="block";
document.getElementById("loginMenu").style.display="block";
document.getElementById("usercp").style.display="none";
timer=setTimeout("document.getElementById(\"timeoutAlert\").style.display=\"none\"",15000);
}
function init() {
clearTimeout(timer);
document.getElementById("timeoutWarning").style.display="none";
document.getElementById("timeoutAlert").style.display="none";
document.getElementById("loginMenu").style.display="none";
timer=setTimeout("warnTimeout()",840*1000);
}
init();
function ajaxLogin() {
//create request, depending on browser's method
var httpRequest;
if (window.XMLHttpRequest) {
httpRequest = new XMLHttpRequest();
if (httpRequest.overrideMimeType) {
httpRequest.overrideMimeType('text/xml');
// See note below about this line
}
} else if (window.ActiveXObject) {
try {
httpRequest = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e) {
try {
httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {}
}
}
if (!httpRequest) {
alert("Sorry, your browser doesn't support this feature. You'll have to refresh the page to remain logged in.");
return;
}
//define a callback function when response is received from server
httpRequest.onreadystatechange = function() { handleResponse(httpRequest); };
//do this so server doesn't discard post data sent
//httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
//send GET request to page specified, asynchronous = true
httpRequest.open('GET', 'http://localhost/php/spacebrick/ajaxcheck.php', true);
httpRequest.send('');
//return false
return;
}
function handleResponse(httpRequest) {
if (httpRequest.readyState == 4) {
// the response is received
if (httpRequest.status == 200) {
//status is good
if(httpRequest.getResponseHeader("Content-Type")=="text/html"){
if(httpRequest.responseText!="0") init();
else alert("Sorry, your session has already expired. You'll have to re-enter your information.");
}
} else {
alert("Sorry, the ajax action didn't work- you'll have to refresh the page to refresh your session.");
}
}
}
//-->
</script>
</td></tr>
<tr><td colspan="3">
<ul id="horizontalMenu"><li><a href="http://localhost/php/spacebrick/sitemap.php">sitemap</a></li><li><a href="http://localhost/php/spacebrick/viewCategory.php">all categories</a></li><li><a href="http://localhost/php/spacebrick/viewCategory.php?catid=news">news</a></li><li><a href="http://localhost/php/spacebrick/viewCategory.php?catid=bulletins">bulletins</a></li></ul>
</td></tr>
</table>
<div class="bodyDivWide">
<div id="privateMessageAjaxNavbar">
<p><a href="javascript:spacebrickPMAjax.goToInbox()">Inbox</a> |
<a href="javascript:spacebrickPMAjax.goToOutbox()">Outbox</a> |
<a href="javascript:spacebrickPMAjax.goToDeletedbox()">Deleted Messages</a> |
<a href="javascript:spacebrickPMAjax.back()">Back</a> |
<a href="javascript:spacebrickPMAjax.forward()">Forward</a> |
<a href="javascript:spacebrickPMAjax.refresh()">Refresh</a>
<form action="http://localhost/php/spacebrick/spacebrickPM/editMessage.php" method="get" id="privateMessageNewForm" onSubmit="return spacebrickPMAjax.SubmitNew('')"><p><input type="submit" value="New Message"> To:<input type="text" name="uid"></p></form>
</p>
</div>
<div id="privateMessageAjaxContainer">
<div class="privateMessageUsage">
<div class="privateMessageUsageBar">
<div class="privateMessageInboxUsageBar" style="width:161px"><p>23</p></div>
<div class="privateMessageOutboxUsageBar" style="width:126px"><p>18</p></div>
</div>
<div class="privateMessageUsageStats"><p><span class="privateMessageInbox">Inbox: (23/50)</span> | <span class="privateMessageOutbox">Outbox: (18/50)</span> | <span class="privateMessageUsage">Total: (41/100)</span> | Unread: -5</p></div>
</div>
<div class="privateMessageInbox">
<form id="spacebrickPMInbox" action="http://localhost/php/spacebrick/spacebrickPM/inbox.php" method="Post" onSubmit="return spacebrickPMAjax.inboxAction()">
<input type="hidden" name="action">
<input type="hidden" name="box" value="in">
<table cellspacing="0" cellpadding="0" class="privateMessageBox">
<thead><tr><th colspan="8"><p>Inbox</p></th></tr></thead>
<tfoot><tr>
<td colspan="8"><p>With selected:
<input type="submit" value="Delete" onClick="return spacebrickPM.inboxDelete()">
<input type="submit" value="Mark As Read" onClick="return spacebrickPM.inboxMarkRead()">
</p></td></tr>
</tfoot>
<tbody>
<tr><th class="privateMessageCheck"><input type="checkbox" id="inCheckAll" name="checkAll" onChange="spacebrickPM.checkAll('in')"></th>
<th class="privateMessageIcon"> </th>
<th class="privateMessageForward"><p>Fw:</p></th>
<th class="privateMessageReply"><p>Re:</p></th>
<th class="privateMessageFrom"><p>From:</p></th>
<th class="privateMessageSubject"><p>Subject:</p></th>
<th class="privateMessageSent"><p>Sent:</p></th>
<th class="privateMessageReceived"><p>Received:</p></th>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index0" value="25"><input type="checkbox" name="in0" id="in0"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(25)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(25)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(25)">BBCode Test</a></p>
</td>
<td class="privateMessageSent"><p>April 21 at 1:30PM</p></td>
<td class="privateMessageReceived"><p>57 minutes ago</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index1" value="21"><input type="checkbox" name="in1" id="in1"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(21)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(21)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(21)">moar spam</a></p>
</td>
<td class="privateMessageSent"><p>April 21 at 12:10PM</p></td>
<td class="privateMessageReceived"><p>April 22 at 09:50AM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index2" value="20"><input type="checkbox" name="in2" id="in2"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(20)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(20)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(20)">spam</a></p>
</td>
<td class="privateMessageSent"><p>April 21 at 12:08PM</p></td>
<td class="privateMessageReceived"><p>April 30 at 11:00AM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index3" value="19"><input type="checkbox" name="in3" id="in3"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(19)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(19)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(19)">Testing spam</a></p>
</td>
<td class="privateMessageSent"><p>April 21 at 12:07PM</p></td>
<td class="privateMessageReceived"><p>April 30 at 11:25AM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index4" value="18"><input type="checkbox" name="in4" id="in4"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(18)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(18)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(18)">test</a></p>
</td>
<td class="privateMessageSent"><p>April 21 at 10:56AM</p></td>
<td class="privateMessageReceived"><p>April 21 at 12:28PM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index5" value="17"><input type="checkbox" name="in5" id="in5"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(17)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(17)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(17)">example</a></p>
</td>
<td class="privateMessageSent"><p>April 21 at 10:03AM</p></td>
<td class="privateMessageReceived"><p>April 21 at 11:55AM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index6" value="16"><input type="checkbox" name="in6" id="in6"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(16)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(16)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(16)">Increment in and out</a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 2:18PM</p></td>
<td class="privateMessageReceived"><p>April 20 at 2:23PM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index7" value="15"><input type="checkbox" name="in7" id="in7"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(15)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(15)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(15)">FW: Follow-Up: Follow-Up: Testing!</a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 1:44PM</p></td>
<td class="privateMessageReceived"><p>April 20 at 2:18PM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index8" value="11"><input type="checkbox" name="in8" id="in8"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(11)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(11)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(11)">Follow-Up: Testing!</a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 12:54PM</p></td>
<td class="privateMessageReceived"><p>April 20 at 1:02PM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index9" value="14"><input type="checkbox" name="in9" id="in9"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/reply.gif" alt=""><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(14)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(14)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(14)">RE: Testing!</a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 1:42PM</p></td>
<td class="privateMessageReceived"><p>April 20 at 1:42PM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index10" value="13"><input type="checkbox" name="in10" id="in10"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/reply.gif" alt=""><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(13)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(13)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(13)">Follow-Up: Follow-Up: Follow-Up: Testing!</a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 1:10PM</p></td>
<td class="privateMessageReceived"><p>April 20 at 1:43PM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index11" value="12"><input type="checkbox" name="in11" id="in11"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/reply.gif" alt=""><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""><img src="http://localhost/php/spacebrick/spacebrickPM/web/attachment.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(12)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(12)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(12)">Follow-Up: Follow-Up: Testing!</a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 1:01PM</p></td>
<td class="privateMessageReceived"><p>April 20 at 1:16PM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index12" value="10"><input type="checkbox" name="in12" id="in12"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(10)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(10)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(10)">Follow-Up: Testing!</a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 12:54PM</p></td>
<td class="privateMessageReceived"><p>April 20 at 2:37PM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index13" value="9"><input type="checkbox" name="in13" id="in13"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""><img src="http://localhost/php/spacebrick/spacebrickPM/web/attachment.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(9)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(9)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(9)">Testing!</a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 12:36PM</p></td>
<td class="privateMessageReceived"><p>April 20 at 12:53PM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index14" value="8"><input type="checkbox" name="in14" id="in14"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(8)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(8)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(8)"></a></p>
</td>
<td class="privateMessageSent"><p>April 20 at 12:35PM</p></td>
<td class="privateMessageReceived"><p>April 21 at 11:55AM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index15" value="4"><input type="checkbox" name="in15" id="in15"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(4)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(4)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=the_guardians'>the_guardians</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(4)">important message!</a></p>
</td>
<td class="privateMessageSent"><p>April 15 at 10:00AM</p></td>
<td class="privateMessageReceived"><p>April 17 at 1:16PM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index16" value="24"><input type="checkbox" name="in16" id="in16"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/reply.gif" alt=""><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(24)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(24)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(24)">Re: important message!</a></p>
</td>
<td class="privateMessageSent"><p>April 21 at 1:26PM</p></td>
<td class="privateMessageReceived"><p>April 22 at 09:43AM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index17" value="23"><input type="checkbox" name="in17" id="in17"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/reply.gif" alt=""><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(23)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(23)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(23)">Re: important message!</a></p>
</td>
<td class="privateMessageSent"><p>April 21 at 1:17PM</p></td>
<td class="privateMessageReceived"><p>April 22 at 09:45AM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index18" value="3"><input type="checkbox" name="in18" id="in18"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(3)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(3)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar'>rob_oplawar</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(3)">Hi me!</a></p>
</td>
<td class="privateMessageSent"><p>April 15 at 09:37AM</p></td>
<td class="privateMessageReceived"><p>April 17 at 1:16PM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index19" value="1"><input type="checkbox" name="in19" id="in19"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(1)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(1)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=the_guardians'>the_guardians</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(1)">Untitled</a></p>
</td>
<td class="privateMessageSent"><p>April 15 at 09:36AM</p></td>
<td class="privateMessageReceived"><p>April 15 at 09:45AM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index20" value="5"><input type="checkbox" name="in20" id="in20"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(5)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(5)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=the_guardians'>the_guardians</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(5)">Old message</a></p>
</td>
<td class="privateMessageSent"><p>April 14 at 3:13PM</p></td>
<td class="privateMessageReceived"><p>April 17 at 1:17PM</p></td>
</tr>
<tr class="privateMessageRow">
<td class="privateMessageCheck"><input type="hidden" name="index21" value="6"><input type="checkbox" name="in21" id="in21"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(6)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(6)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=the_guardians'>the_guardians</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(6)">older message</a></p>
</td>
<td class="privateMessageSent"><p>February 23 at 12:34AM</p></td>
<td class="privateMessageReceived"><p>April 17 at 1:19PM</p></td>
</tr>
<tr class="privateMessageRowAlt">
<td class="privateMessageCheck"><input type="hidden" name="index22" value="7"><input type="checkbox" name="in22" id="in22"></td>
<td class="privateMessageIcon"><img src="http://localhost/php/spacebrick/spacebrickPM/web/message.gif" alt=""></td>
<td class="privateMessageForward"><p><a href="javascript:spacebrickPMAjax.ForwardMessage(7)">FW</a></p></td>
<td class="privateMessageReply"><p><a href="javascript:spacebrickPMAjax.ReplyMessage(7)">RE</a></p></td>
<td class="privateMessageTo"><p><a href='http://localhost/php/spacebrick/viewUser.php?uid=the_guardians'>the_guardians</a></p></td>
<td class="privateMessageSubject"><p><a href="javascript:spacebrickPMAjax.ViewMessage(7)">oldest message</a></p>
</td>
<td class="privateMessageSent"><p>July 23, 2006 at 12:01PM</p></td>
<td class="privateMessageReceived"><p>April 17 at 1:21PM</p></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<div id="privateMessageAjaxStatus">
</div>
</div>
<div class="contentBox" style='display:block;'><p>Currently Online Users: <a href="http://localhost/php/spacebrick/viewUser.php?uid=rob_oplawar">rob_oplawar</a> | 1 users total.</p></div> </div>
</td></tr>
</table>
</div>
</body>
</html>
That HTML is generated from the PHP code above. The script includes and stylesheet links are temporarily in the wrong place, since I'm currently changing the way my code takes care of that, but otherwise the HTML and CSS and Javascript are 100% valid.
[/massivepost]
-
Re: [GALLERY] Rob's WIPs
:O *in shock*
.
.
.
..
....
.....
.......
Now your just showing off lol.
You a web designer or just looked into the subject a lot?
Edit: That means you could help me to do this? Read bottom post (Mine)
-
Re: [GALLERY] Rob's WIPs
No, see, what I'm saying is I'm a web developer, rather than a web designer- while Zeph makes pretty templates using photoshop to generate HTML, I get my hands dirty and write thousands of lines of code instead of mucking about with making it look good.
So in answer to your question, no. lol.
-
Re: [GALLERY] Rob's WIPs
Web Developer is what I men't Lol. I call them the same thing :D.
-
Re: [GALLERY] Rob's WIPs
I'm hosting a Halo 1/Starcraft LAN party next week.
It is traditional for me to draw up a simple character representing the game that will be played at the LAN party and put the picture on the invitation, so here's my latest:
http://www.spacebrick.net/pictures/b...invitation.jpg
Damn, that came out really well, considering I only spent an hour or two on it.
e: I can't draw hands for shit.
ee: here's the first one I ever did for a LAN party, many many moons ago:
http://www.spacebrick.net/pictures/b.../lit_small.jpg
I have improved much. :D
eee: Here's another one I did- in the final invitation the elite was holding an X-Box and pushing aside some text- I was hosting a LAN party on behalf of my friend for his birthday, so the elite was pushing aside the words "3rd monthly party at Rob's house!", to be replaced by the words "Rick's Birthday Party at Rob's House!" It was silly and fun. =)
http://www.spacebrick.net/pictures/b...push_small.jpg