Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: soniclnd
  • Content: Threads
  • Order by date
  1. soniclnd

    why won't this validate? why?

    hello, I'm working on a template, but it doesn't validate, I have no idea why... here's the source <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head>...
  2. soniclnd

    what's the best way of horizontally aligning elements?

    besides tables, what is the best way to horizontally align elements? float: left; or float: right; seems good but if the scree size decreases then the div's move down and the layout messes up btw: what does XHTML have agains tables and frames?
  3. soniclnd

    i cannot fwrite from my new server without chmodding

    hello.... i recently changed servers and noticed that with my previous host i didn't need to chmod any files(they were all in 644) and i could use fwrite() succesfully. however, with my new host all files are also in 644 but to use fwrite() i have to chmod the file to 777.... can anybody tell my...
  4. soniclnd

    how do i write php commands other than strings...

    hello right now i want to write into a php file something like: <?php $names[] = "yahoo"; $names[] = "google; ?> how can i do that...... somehow i've only been succesful in writing strings.........
  5. soniclnd

    how do i control the page inside an iframe....

    let's say i have an iframe(page x) inside my webpage(page y).... how can i from page y change all of the stuff in page x (ie: background color, link color, div alignment... etc...)? thanx in advance for any help.......
  6. soniclnd

    is there a complete javascript documentation?

    i really want to learn javascript, but i'm having a bit of trouble with the tutorials and stuff(i don't think they're very complete)....... is there an official javascript documentation(just like the php manual http://www.php.net/manual/en/index.php )....... the closest thing i found to an...
  7. soniclnd

    how do i send post variables... without a form...

    you know how you can send get variables by just typing: mypage.php?somename=somevalue well... i wanted to know if there was anyway to send post variables without using a form........
  8. soniclnd

    preg_match_all problem

    well... i'm writting a script and i get this error Warning: preg_match_all(): Unknown modifier '<' in /home/soniclnd/public_html/newscript.php on line 61 it's complaining about this: preg_match_all($regex, $conts, $group, PREG_SET_ORDER); the regex is $regex = "<p class=g><a...
  9. soniclnd

    how to use mysql_store_result() and mysql_stmt_data_seek()

    can anybody show me an example of how i would use the mysql function mysql_store_result()?..... i've been looking and i haven't found any examples, and i can't understand how they explain the structure of it on the mysql documentation (http://dev.mysql.com/doc/mysql/en/mysql-store-result.html)...
  10. soniclnd

    absolute positioning

    is there any way of absolutely position an object accoriding to its parent div and not the body?... i can't seem to find the answer...
  11. soniclnd

    100%-10px?

    hello... i have a div that i want to extend the whole width of the page except the last 10 pixels... is there any way to accomplish this with css?
  12. soniclnd

    why doesn't this validate?

    i'm doing a css template but when i check it, it doesn't validate.... here's my code: * { margin: 0px; padding: 0px; border: 0px; } body { font-family: arial, sans-serif; text-size: 12px; } .center { margin: auto auto; } .logo { width: 741px; height: 248px; position: absolute; top: 0px...
  13. soniclnd

    verticaly aligning text, and making it bold and in italics

    how do i verticaly align text in css... also how do i make it bold and italic with css thanx in advance for your help
  14. soniclnd

    internet explorer is messing up my template

    ok so i spend some time changing my template from tables to CSS and it looks great (at least i think so)... now I find out that 90% of the world is gonna see it all messed up (yes... internet explorer is messing it up!!!) it looks great with firefox... looks perfect with opera... validates...
  15. soniclnd

    will a div always be bellow the brevious div???

    i'm making a css layout, and i want a div to be next to the one before it, not bellow... i can't seem to do that... anybody knows why... here is a portion of my code <div class="ltmiddle"> <div class="slantright"> <img src="spc.gif" alt=" " /> </div> <div...
  16. soniclnd

    ul li {} li ul {} ??? what is that????

    ok, so i was browsing throug some css and html templates because i wanna get into this whole css thing... but i've found this on a stylesheet ul li{position: relative} li ul{position: absolute; left: 149px; top: 0; display: none;} i know what all the properties and values mean but i do...
  17. soniclnd

    how do i center an elemend in css and xhtml strict

    i want to center a table in xhtml strict but it won't let me.... the <center> tag is obsolete, and the <div align="center"> is also obsolete... how can i center my table with proper xhtml strict?...
  18. soniclnd

    xhtml strict img problems

    hello i know html and want to change my work into xhtml. however when i put an image it always put a padding to the bottom of it (even if specifically assign no border, margin, or padding) can anybody help me?

Part and Inventory Search

Back
Top