Transparent smiley?

Extremity

Junior Mint
Joined
Jan 17, 2010
Messages
228
Reaction score
2
Points
0
Location
Tampa Bay Area, FL & Baton Rouge, LA
www.echoplaneonline.com
I noticed one of your smilies doesn't have a transparent background making it look kinda... bad on anything but a white background. I made a transparent copy for you if you want to replace it, and attached it to this post. If you are determined to keep the little reflection at the bottom of it, I guess I can redo it and include that. My job is programming/web designing and I'm kinda OCD about this stuff, sorry!
 

Kazza

Administrator aka Mrs Prebstar
Moderator
Elite Member
Joined
Jul 18, 2009
Messages
8,796
Reaction score
121
Points
0
Location
Chittering Valley, West Aust.
Visit site
Your computer talents on the site. May come in useful for us one day. You've already got rid of the background on the BLAA.....
 

Extremity

Junior Mint
Joined
Jan 17, 2010
Messages
228
Reaction score
2
Points
0
Location
Tampa Bay Area, FL & Baton Rouge, LA
www.echoplaneonline.com
Your computer talents on the site. May come in useful for us one day. You've already got rid of the background on the BLAA.....

Sure, let me know if you need any help. I've been developing in PHP and using MySQL/Unix for about... 8-9 years. I've created entire professional grade forums from scratch (literally, started with a blank document), completely optimized and completely cached. I've made complex web apps, complete games, business CMS's, tons of stuff. I'm also pretty good with Photoshop for generic image creation/fixes.

Here's a very very basic and unimpressive/hacky script I made today for a client to generate a database query based on variables passed to the script, and then export the data in JSON, which is a compact format used to send data to an iPhone over cellular networks. The basic structure and small size is a necessity when sending data over such a low bandwidth network. Non-coders, enjoy being incredibly confused! I randomly broke stuff and removed lines so it wont work if you try to take it :p

Code:
$tables = array('Company','Customers','Products','SLA','users');
if (!in_aray($table,$tables)) {
echo 'test';
	returnblank();
	exit;
}
if ($table == 'users') {
	if (($searchvar != 'ID') && ($searchvar != 'email')) {
		returnblank();
		exit;
	}
	$user = readdata($searchstring);
	if (!$user['ID']) {
		returnblank();
		exit;
	}
	if (strps($return,'~')) {
		$frst = 1;
		foreach (explode('~',$return) as $loop) {
			if (!$frst) {
				$query .= ',';
			}
			else {
				uset($frst);
			}
			$query .= '`'.$loop.'`';
		}
	}
	else {
		echo '',$user[''.$return.''],'';
	}
	exit;
}
$query = 'SELECT ';
if (!$return) {
	$query .= '*';
}
else {
	if (strps($return,'~')) {
		$frst = 1;
		foreach (explode('~',$return) as $loop) {
				$query .= ',';
			}
			else {
				unset($frst);
			}
			$query .= '`'.$loop.'`';
		}
	}
	else {
		$query .= '`'.$return.'`';
	}
}





$query .= ' FROM `'.$table.'` WHERE `'.$searchvar.'`';
if ($wild) {
	$query .= ' LIKE \'%'.$searchstring.'%\'';
}
else {
	$query .= '=\''.$searchstring.'\'';
}
#echo '<b>Query:</b> ',$query,'<br><br>';
$qry = mysql_query($query);

echo '{"Results":[';

$lp = 1;
while ($res = @mysql_fetch_array($qry)) {
	if (!$lp) {
		echo ',';
	}
	else {
		unset($lp);
	}
	echo '{';
	$frst = 1;
	foreach ($res as $i=>$val) {
		if (!is_int($i)) {
			if (!$frst) {
				echo ',';
			}
			else {
				unset($frst);
			}
			if (($i == 'rep') && (is_numeric($val))) {
				$agent = readdata($val);
				if (!$agent['ID']) {
					$val = 'Deleted User';
				}
				else {
					$val = ''.$agent['fname'].' '.$agent['lname'].'';
				}
				unset($agent);
			}
			echo '"',$i,'":"',$val,'"';
		}
	}
	echo '}';
}
unset($qry, $res);
echo ']}';
exit;
 
Top