Jump to content

Adam

Moderators
  • Posts

    5,717
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Adam

  1. Well not too sure where to put this one. Just been resizing some images for my boss' website www.minimerc.co.uk. Resized em in photoshop and uploaded them in FireFTP (firefox add-on).. done this a hundred times yet for some reason its acting really odd.. Basically the images are showing up white or invisible, not too sure.. take a look here.. http://www.minimerc.co.uk/browse/G_Class/W463/B15 the image for the thumbnail should be at: http://www.minimerc.co.uk/images/catalog/M_Class/W163/M_Class_W163_B15_thumb.JPG .. yet as you can see, just prints the URL in the window?? Anybody come across this before or have any ideas what might be happening?? Cheers for any help! Adam
  2. As crayon said, what is it your actually trying to do, in more english?
  3. Also if I were you i'd change the field in the database to unique.. that way mysql would give off an error if you try to enter duplicate usernames... Adam
  4. Whats on lines 21 and 22? the code above?
  5. try showing the mysql error.. mysql_query($delete) or die("Error: " . mysql_error());
  6. yeah sorry.. rand(1, 6);
  7. or for 2 rolls for each user.. $user1dice1 = rand(0, 6); $user1dice2 = rand(0, 6); $user2dice1 = rand(0, 6); $user2dice2 = rand(0, 6);
  8. $dice1 = rand(0, 6); $dice2 = rand(0, 6); for each roll...
  9. required to download a plugin on the profile page, but firefox cant find anything for it? It's alright, bit too hectic and mismatched in some places though... like that spinning back link.. doesn't fit at all.. and same as what they said about the gta image, plus those guys on the header at top of main thing, look like they could be copyright too. Adam
  10. Very new to CGI. I've got some webspace with streamline.net. They actually have a test cgi script and they upload it for you in the CGI-BIN, and seen as it's their file I doubt there'll be any mistakes with it. So it's uploaded at: http://www.adamswork.net/cgi-bin/test-sln.cgi However when I try to view the file, as it will with you, just displays the script as text... Is there something I'm missing or haven't done? As I say very new to CGI just having my first real play with it today... Cheers, Adam!
  11. try something as stupid as changing like... $row[id] .. to .. $row['id'] things like that have gotten weird results for me before...
  12. not too sure if this helps but i found this... preg_replace('/[^\x09\x0A\x0D\x20-\x7F\xC0-\xFF]/', '', $string); at: http://www.sitepoint.com/blogs/2005/04/19/character-encodings-and-input/ ... which says that will strip out any characters not in ISO-8859-1. Also if you have the ability to enable functions with your PHP config look into "mbstring()" ... Adam
  13. Best to put them at the start of the execute_upload function ..
  14. Good start. Not too impressed with the font on the nav though, doesn't blend well... Perhaps try taking the border out from when you hover over the links as well? Think overall its a good design idea but, little too simple... Adam
  15. ah okay, do you know any examples? don't really use wordpress or read anysites with wordpress... I'm no star at designing though got to say.. better at the programming side so do struggle to come with a unique looking design. Do see what your saying though, does look little too structured for a so called web designer... Shall keep working on it... Cheers, Adam..
  16. It's good. Design is nice and clean... I'd think up a few more ideas though, like being able to setup direct debits and other bills, perhaps add interest rates and that? You could maybe try something with email alerts too? As its only a practise site I wouldnt go to town but will teach you a thing or two trying something like that... personally i'd need to have a think about how I'd go about doing it so, would be good experience! Adam
  17. Good start but im not keen... Lacks a bit of everything... I think the design needs a lot more work, its too simple and bare. Not sure what relevance the ocean pic has? Probably worth adding more 'complex scripting' if thats what your selling, mainly a contact form rather than a mailto link? Overall I do think it needs a fair bit more work before it's going to sell your services... Adam
  18. haha. rushing too much... www.adamswork.net
  19. Hello all. This websites still a work in progress but the design is pretty much done. The website is my portfolio that I'm going to give people as pretty much like a reference of my work... Would be grateful if people could try and give me a constructive critique... Cheers, Adam!
  20. to be honest, can't see the point in it? Whoever wins the site is gunna need somewhere to store it which means rather than using that and getting some filename like '113246780test.gif' they could just as easily upload it through their ftp program and give it a normal name like 'test.gif'? Also it's not very secure... Adam
  21. Not keen on it myself... images aren't particularly smooth or well fitting i'd say. Like the image popup scripts though, nice touch! I think with a good logo and better use of images and colour for the layout you could make it much better.... I think the 'i's are a good idea, but could probably be made to fit in a bit better, look bit odd at minute.. And lastly the center alignment of text makes the content look a little rough and not thought out... My honest opinion... Adam
  22. does sf_users have the "admin" field in it ?
  23. Tx: Mailling List From: MiniMerc Bxc: [email protected], [email protected] .... is the echo'd headers variable - Cheers!
  24. I've never needed to do this before so I'm having a few problems, but I have a list of email addresses like so.. "email@1, email@2, etc.." They are posted through the form with the name of the field as "sendTo". Fine so far, but I'm trying to send them all in one email rather than looping through them and sending one at a time. I've put the contacts in the Bcc header like so.. (I've removed my validation and what not from this code).. $subject = $_POST['subject']; $message = $_POST['message']; $contacts = $_POST['sendTo']; $headers = 'From: MiniMerc <[email protected]>' ."\r\n"; $headers .= 'Bcc: ' .$contacts. "\r\n"; $sendMail = mail('[email protected]', $subject, $message, $headers); I've been then running a conditional on the $sendMail var to find out if its been sent, and it keeps saying it has, but no email, not even spam in the spam.. Can anybody see something I've done wrong or.. provide any help? Cheers!
  25. Ran into some trouble setting it all up.. it's not displaying css files, javascript files, images and its not linking right.. obivouslly its trying to get say "browse/SL_Class/style.css" is there any way of stopping this? causing big problems on the site.. Cheers! Adam
×
×
  • 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.