Jump to content

willpower

Members
  • Posts

    296
  • Joined

  • Last visited

Everything posted by willpower

  1. Thanks mate. What colours would you prefer to see, I wanted to inject colour and color code each section. Base Line text...yeah def need to work on that as I am having a nightmare with photoshop saying that they are aligned (smart guides) when clearly it isnt Flash repllacement...agree...just not developed that far yet...but will of course include it. Testimonials on their way. Thanks again.
  2. yes dont just set a logged in var give them a userid sesssion var too. that way you can track who's who and return specific data to them
  3. You need to have an area which can expand and contract unnoticed. SO your current header will not work as is. Look a t other sites to see what they have done. I encourage looking at multiple screen sizes as the web is becoming harder to design for as we have NEVER had such diverse monitor/resolutions to design for. I can only image as the net goes truly mobile that this will get worse. As for bandwidth...you may have plenty but your visitors may not! to see expandable areas in its simplest form look at the tool bar at http://mambo-foundation.org/. They have a fixed centre piece with a repeated edge allowing fluidity across vast monitor ranges. As I said...simplest form so should get your brain thinking. Best of Luck# Will
  4. then you need to try harder...lol. Whatever px you add on one side will need to be compensated for on the other. It can be done. Will
  5. Fisrt time i'ver4 asid it on here...GOOD JOB. if i was to be hyper critical, i'd make more of your name at the top. Its a little lost and if I were you I'd make it bolder. Your name is the best assets youve got in this business...be loud and be proud. 9.999/10...lol
  6. try adding a few px padding to the left of the left hand column. just so as there is a wee bit of white border to match the rest of the site
  7. well you've used a template system...which is ok...graphics are a tad(well rather seriously) over the top on bandwidth. Try compressing them a little. Also I have a Huge monitor (yes size IS important despite what your girlfriend's says). It looks a bot odd in there as the header image is too small for the site.
  8. Ok...so now i face the dogs I know i have been tough on you all...but i guess what comes around goes around...so here comes mine. This is NOT a working site...i would really just like some feedback on the look and feel please. I have been staring at it for so long that I cannot tell whats what anymore. I'd like feedback on the following areas. Color Images Layout Font Style Identidy etc http://www.e-rizon.com/test.php
  9. yes you are on the right track. just declare a var before the include on each page. $page="home" or $page="contact"; then include the menu file and use an "if" or "case" statement
  10. I want to see what errors are generated so i have the or die (mysql_error()) included in my queries. BUT this stops the script and i want it to continue to run...how would i accomplish this. Will
  11. can you include your prod1 script please and a sample of the html where you include the include
  12. I don't know if there is a better way, but this is the way i'd go at it.
  13. right ignore the %table comment because this is part of a function so that section is good
  14. Just read my last post...sounded sarcastic...didnt mean to be...sorry
  15. hi perhaps you could have seen my post on the same subject. I too have the same issue. funny that im using your script dont you think! If i get this sirted i'll let you know
  16. NO that is a direct cut and paste from the output Will
  17. No Error Each value in the insert statement is bank ("") ie INSERT INTO mytable VALUES("","","","","")
  18. An extremely well verbalised response. Thanks for your comments and direction. To all Again I apologise for my response, but having read PHP_PhREEEk's comments I have identified my course of anger. I too accept Sensai's response in light of the said comments. I can identify with his sentiments however I felt as though I was being 'tarred' with the same brush as the 'please do it for me' brigade. This is what cause offence. Whilst none of this solves my issue...lol...yet...(yet to look at your suggestion Phreeek) I do believe that this post has served to discuss some ongoing issues with this forum. To those who help those who wish to learn...I salute you. For the others....well now I would get banned.
  19. Now that I love the world again... Can anyone identify the issue? Thanks
  20. OK..so i can grow up a little myself. I merely take exception to the fact that I specifically did not ask for a script to be written. I have been a member for some time now and i am very well aware of the 'basic facts of this community' I respect this community and enjoy its services and benefits wholeheartedly and help as much as I can with my limited knowledge. I apologise if I offend with my comments or indeed in the defence of my posts. NOW Back to the issue in hand. The tutorial which was suggested has been useful. I indeed have now created a file which should create a backup, however the following occurs. All tables are present, the number of lines are present, the data is missing. Can anyone shed some light as to the accuracy or issues surrounding this piece of code. $query = mysql_query("select * from $table"); $num_fields = @mysql_num_fields($query); $numrow = mysql_num_rows($query); for ($i =0; $i<$numrow; $i++) { $result .= "INSERT INTO ".$table." VALUES("; for($j=0; $j<$num_fields; $j++) { $row[$j] = addslashes($row[$j]); $row[$j] = ereg_replace("\n","\\n",$row[$j]); if (isset($row[$j])) $result .= "\"$row[$j]\"" ; else $result .= "\"\""; if ($j<($num_fields-1)) $result .= ","; } $result .= ");\n"; } return $result . "\n\n\n"; As all values are '' (NULL)
  21. Well at 16 perhaps you have some social skills left to develop. "Kinda thought this bit would be easy...but so far I cant even find out where to start. Any help, guidance or similar scripts greatfully appreciated." At what point did I ask you to write the script for me? I believe that I requested what you kindly provided.
  22. A very curt remark....I believe that the link to the tutorial would have been acceptable without the comment. Perhaps you are a school teacher? I thank you sincerely for the resource but not for your opinion...opinions are like your arse holes...everyone has one.
  23. or i use arrays... <?php $mystring="Hello World I'm Willpower"; $split=explode(" ",$mystring); ?> Now to get the vars echo $spilt[0]; // Hello echo $split[1]; // World echo $split[2]; // I'm etc
  24. sorry dude...just getting a 404
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.