r3d1405241470
Members-
Content Count
279 -
Joined
-
Last visited
Everything posted by r3d1405241470
-
i just installed sp2 lately and it really rocks my head coz i can reconfigure the group policy it changes a lot and some new features wich is really great but can't find some old policy i changes before sp2 :)i also disable the security center coz i'm happy w/ mcafee and some new features on ie really cool, active x comfirmation and pop up blocker
-
use looping w/ php $starting_count = ???;$howmany_loop = ???;$key = "ownerIndex int primary key, driverIndex1 int, driverIndex2 int, driverIndex3 int, driverIndex4 int";for($var = $starting_count; $var <= $howmany_loop; $var++){ mysql_query("CREATE TABLE gulfOwnerDriversWeek".$var."(".$key.")");}
-
mysql databases can store data up to 4-8 Gig i thinkin your case: it depends on how you administer your databasesin my old frnds web site, he have stored 200k+ ppl info for 5mb+ for total size of databasesand for an example my apache's log file it has 4531 lines and the file size is just 393kb when i insert into the the mysql table, the msyql table size is 438kb in 4532 rows see just lets assume one line = one info per head/visitor that's means you have 4.5k visitor and may be for 100k users your dabases size will be ranging from 10mb - 20mb, you don't have to worry for your databases size anymore, if you come at this point you should be worrying for your bandwidth
-
try this in phpcreate directory listing script that will provide the files data i.e. filename, size... and then it will dump the result in mysql table. for the search script just a form with seach query in mysql
-
Embed font question
r3d1405241470 replied to suicide1405241470's topic in Websites and Web Designing
no. microsoft introduce this may be 5-6 years ago and that time it only works on ie and the user must used microsoft os, and the font extension is in .ttf(true type font) i think and no need to conversion suggestion: you can use css fonts like this all.my_fonts { font-family: r3d special, Arial, Tahoma; }..........<em class="my_fonts">Print this</em> if the user have the first font "r3d special" the browser will use that, if that font is not installed the browser use the "Arial" font, if Arial doesn't exist the "Tahoma" font will be used, or if all three not exist the default font will be use(in user settings). anyway i hate installing fonts from download and most users too (i guess) -
table height question-pls. help
r3d1405241470 replied to suicide1405241470's topic in Websites and Web Designing
it's not working coz table doesn't have an height attribute. not valid <table height="100%">.... instead use height attribute in table cell, td and th <td height="100%">...<th height="100%" >... -
tip: swf means "small web files" and it supposed to be a replacement to gif animation (i think) in the past. and 100k swf(not including the external images) will load as fast as 100k jpg.
-
i've started in c then c++ then to web design, after that i'm not happy with html i try to learn php and since i know some basic programming php is a piece of cake, the real works comes in real working, bug free application. for me the best start is the manual, it has the very basic and simple code for each functions, and it's much better than any tutorials and it also a have a quick start guide for real novices you also need some tools like text editor(like notepad) and also a the main php and also a web server(like apache) for offline testing and debugging offline manuals
-
Country: RPCity: QC that's all
-
WINDOWS XP HIDDEN APPS Hidden Stuff
r3d1405241470 replied to iGuest's topic in Websites and Web Designing
you have forgot lot of tool one of this is myfavorite the 'net tool' use like this net stop iisadmin, net start w3svc -
Short tuts for html hex color code hex code 00 - ff count as 0-1-2-...-9-A-B-C-D-E-F no #10 coz it count as 16 in decimal, A represent 10 and B is 11, F is 15 and 10 is 16. how? F is 15 and G is supposed to be 16 but G and above is not a valid hex code so they made it 10( not ten but one-zero) actually it have mathematical computation for that and i will not explain it color code in hex must be in six(6) digits 123456 the first two(2) digit is red (the 12) the third and fourth is green (34) and the last is in blue(56) these are the three main colors in color wheel. and you can mix these color to produce another color. and in two digit hex 00 is the lowest(least), FF is the highest(more) how it works? just like a color mixing w/ three colors in paint brush except it show an inverse color when these three color are mix together with a great amount. in paint brush when you mix red-green-blue the output is black but in html hex color it is white(FFFFFF) confuse? back in hex color, 000000 is black and FFFFFF is white, in html black represents no color means red is zero(00), green is zero(00), and blue is zero(00) in hex 00000 and white represents that all color exist, more red(FF), more green(FF) and more blue(FF) in hex FFFFFF. how about other colors? it just like these, put more red color (FF) no green (00) and no blue(00) in hex FF0000. imagine a canvas that you paint with only red what color that you expect? of course red , what if you add a some green(32) and some blue(03) in hex FF3203 hopefully it is still red since you just add a little of other color. what if you add more, in hex FFACBE (red is FF, green is AC, and blue is BE) REMEMBER that if you add or combine a great amount of all three color it will produce a white or lighter color. what if you decreased the amount of red in half 880000? decreasing the amount of color will show a darker one. more color? back in white(FFFFFF) and black(000000) and what is middle color of it? yes it's gray and the half of F(it count as 16 including 0) is 8 and the half of white(FFFFFF), 888888 is gray. From the previous one FF0000 is red, 00FF00 is green and 0000FF is blue, Mixing red and green will output yellow (FFFF00) red âFF, green FF, and no blue -00 Green and blue will produce cyan, (00FFFF) no red â 00, green FF, and blue FF And the combination of red and blue is magenta, (FF00FF), red FF, no green 00, and blue FF. How to produce more color? experiments see also this post http://forums.xisto.com/topic/79732-topic/?findpost=1064273354 from Darren it have the list of standard color for web that even the older pc can view expect B/W monitor but with this short tuts you can create or recreate any colors that you want, I hope
-
Hex Color codes a list of colors in code
r3d1405241470 replied to Darren1405241470's topic in Websites and Web Designing
actually you can experiment the colors that you want by just mixing some hex code and it must be six digit(123456) -
A simple but powerfull tool that i use
r3d1405241470 replied to proxies's topic in Websites and Web Designing
check macromedia.comit have a trial version last for 30 days it is fully customizeable means you can organize or reconfigure the whole program for your own needs it also have a built-in ftp and all features you need -
do magnets have an affect to humans few years ago i saw monitor w/ two speakers on it's side, now i know why no one want's to buy that one thnx for the tip
-
Embedding XML into HTML
r3d1405241470 replied to suicide1405241470's topic in Websites and Web Designing
yes w/ pure html no server side script here is a sample zip file HERE the zip contains .html .xml .xsl the html reads the xml and use the style from xsl i use this script on my old site the downside is it can only be viewed w/ internet explorer hopefully, you can use php and other server side script to read or grab rss/xml news feeds and it is browser independent -
try using some css tags for text like vertical-align: top | text top | middle | bottom | text bottom ... text-align: left | right | justify setting the default font size might be helpfull too and since you want it inside the table data you can set width and the height of that data and also set padding in the left side if you want it start from left or margin to some sides here is an example csstd.text_menu { padding-left: 1em; vertical-align: middle; text-align: left: width: 200px; height: 40px; }em { font-size: 80%; font-family: Arial; line-height: 3px; }usage<tr><td class="text_menu"><em>SOME TEXT</em></td>.......hope it help something
-
i commonly use dreamweaver mx 2004 and text pad for fast editing and viewing code.w/ dreamweaver it is easy to build a web site from scratch, nice code highlight and autocompletion in php and also have a nice browser check compatibily for your css and html code which is a great help in web development and design
-
for mebest software server : apache 1.3.xbest databases : mysql best forum : phpbbbest script provider : http://www.evilwalrus.com//?gtnjs=1 and more ( the more the better)editor : i use dreamweaver all this info from most users online using php except the editor
-
there is and it is called C++ and php api is still experimental therefore php still best for web and ahead of any server side language and aspx c# is also another candidate for ssl the downside it is made by microsoft
-
photoshop brushes brushes on adobe.com
r3d1405241470 replied to ladyvullpine's topic in Graphics, Design & Animation
here photoshop brushes site from my databases http://www.truly-sarah.com/ http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ http://unyielding.org/brushes/brushes.htm http://www.itsuji.net/rg-erdr.php?_rpo=t http://www.dozibaer.com/brushes/dozi%27s-brushes-01.htm http://www.snapmix.com/brushes/ http://forums.xisto.com/no_longer_exists/ http://linzeestyle.com/imprints/ http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/ http://www.autofx.com/ https://sedo.com/search/details/?domain=www.bah.be&partnerid=22299&origin=partner http://forums.xisto.com/no_longer_exists/ http://www.misprintedtype.com/ http://ww1.elisabethan.net/rg-erdr.php?_rpo=t http://forums.xisto.com/no_longer_exists/ http://secretloft.com/ http://forums.xisto.com/no_longer_exists/ can't guarantee that all links are still working -
the tutorial is on image ready, actually you can do this on photoshopfirst make a slice for your template/image in any size and how many slice you want by using slice tool (you can resize the slice by hitting and hold "Ctrl" key while the slice tool is active)after you finish slicing select and click "File" -> "Save for web"a "Save for Web" dialog box appearselect different tab views for different optimize settings actually you can change these settings in right side and select what type of image it will output/save i.e. jpg, gif or png and experiment w/ different optimize settings for different file size and colorbe sure to select all slice and changes the optimize settings for each sliceand then click on "Save"(in the right side of menu)select if it ouput images only or w/ htmlthen your done