Need small php work done.
Posted: Sat May 27, 2006 7:59 am
I'm gunna spit two code sections towards you PHP Geniouses.. and I will write below them what I want lol.
I need this changed into themes/WD-Core/images/headright.gif.
Just a regular image, same size as that movie.. just need the movie stuff taken out.
Need this changed to themes/WD-Code/images/logo.gif.
Same parameters. No resizing just need the movie part taken out.
Just post the code below.. this goes in my header.php so please don't mis calculate lmao.
.. Might end up with spaces or overlappings.
Nuke-Evolution with the echo's.. each echo represents a new line of code.. Just thought I would add this because I looked at it and word wrap was on.. so :P.
Code: Select all
echo " <td rowspan=\"3\">";
echo " <object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"274\" height=\"209\" id=\"headright\" align=\"middle\">";
echo "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
echo "<param name=\"movie\" value=\"themes/WD-Core/images/headright.swf\" />";
echo "<param name=\"quality\" value=\"high\" />";
echo "<param name=\"bgcolor\" value=\"#171717\" />";
echo "<embed src=\"themes/WD-Core/images/headright.swf\" quality=\"high\" bgcolor=\"#171717\" width=\"274\" height=\"209\" name=\"headright\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />";
echo "</object></td>";
echo "</tr>";
Just a regular image, same size as that movie.. just need the movie stuff taken out.
Code: Select all
echo "<tr>";
echo " <td>";
echo " <object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"467\" height=\"98\" id=\"logo\" align=\"middle\">";
echo "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
echo "<param name=\"movie\" value=\"themes/WD-Core/images/logo.swf\" />";
echo "<param name=\"quality\" value=\"high\" />";
echo "<param name=\"bgcolor\" value=\"#272727\" />";
echo "<embed src=\"themes/WD-Core/images/logo.swf\" quality=\"high\" bgcolor=\"#272727\" width=\"467\" height=\"98\" name=\"logo\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />";
echo "</object></td>";
echo "</tr>";
Same parameters. No resizing just need the movie part taken out.
Just post the code below.. this goes in my header.php so please don't mis calculate lmao.

Nuke-Evolution with the echo's.. each echo represents a new line of code.. Just thought I would add this because I looked at it and word wrap was on.. so :P.