Jump to content
MakeWebGames

ashbow97

Members
  • Posts

    82
  • Joined

  • Last visited

About ashbow97

  • Birthday 02/16/1997

Personal Information

  • Location
    Shrewsbury

ashbow97's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. It looks very good :) Must of cost a lot, I'll be signing up ;) Can I ask who was the artist who made the bit at the top? :)
  2. I tend to be slightly picky with the games I start, as if I spend a lot of time on them I want it to be fun and enjoyable. And it tends to be that a good working game tends to have a good design and structure. So that usually what grabs my eye first, but for me to carry on playing it must be easy to navigate and fun to play :)
  3. Thank you! :) It now works pretty much exactly how I wanted it to :) http://dphgardenservices.co.uk/test.php I just have one last final question, as you can see, at the bottom of the page under 'latest comments' I have selected 3 posts from multiple tables... which is what I wanted. The only problem is, if someone were too post a very long comment on the subject it would make the page very messy. What I want to do (which is hopefully possible) is limit the amount of characters selected from the message row. So only 60 characters will be shown at the bottom of the page, and then put '...' at then end for them to go find out more :) This bit is unrelivent. If you read through, you'll notice there is a \ before the 's... is that fixable?
  4. Sorry :L Here is the page: http://www.dphgardenservices.co.uk/website.php As you can tell, one of the main part of it is the comment feature. I've already got that sorted and it all works fine. If you look at the bottom of the page you will see a bit called 'Latest Comments', I'm trying to get that to work. So what I want it to do is select the 3 most recent posts throughout the site... and since there is a table for each page otherwise things would start to clash, I need to select multiple tables.
  5. Sorry, phrased it wrong ;) First thing I found :L
  6. Oh right :/ How else would you be able to do it? The only way I can think of that would work is to either insert it into two tables, or select from multiple tables...
  7. To be honest, the reason I choose it was because it was the first thing out there, but also it had what I wanted. I was an absolute newbie to code then (still am really :L) and it was easy to customize, so it was my dream come true really :L Before I joined this forum, all I heard about it was good things, but it has also helped me know a bit more about coding (and I know you shouldn't learn from McCodes, but I learnt howto fix some of the errors). So yeah, if there was another engine, what I wanted and was well known, I would have more than likely used that :L Pretty much the sane as Dexter :)
  8. Right, I need a new table for each page, because each page has unique comments about the subject. But at the bottom of the page is the most recent comments for all of the pages. If I used SELECT, I would have to edit the code every time I made a new table, so it includes that one. If I made a seperate table, I could insert all the posts into that one, and just select that one table for the thing at the bottom. But I'd still need to send the information to the unique tables. So all I need to do with this one is code it so that when you post your comment, it inserts into two tables at once. Get me? So I was asking if you know a way to make the INSERT funtion insert into two tables (with identical columns) at the same time :)
  9. I don't know, after a bit of researching, I found out it would be easier to make it so it inserts into multiple tables. Because if I had a join, I'd have to change the code on every single page when I create a new database. And if you're wondering what the hell I'm doing, I've created a blog for someone, but they wanted a bit at the bottom of the page which shows the latest comments. So what I could do, is insert it into two tables, one of which would show ALL of the comments made throughout the site... I know what I'm on about ;) So does anybody know how I can insert into to multiple tables at once? :) Thanks for all the current help :D
  10. Right what I want to do (which I'm really stuggling with) is to select multiple tables from one database. I've looked online and have found some things, but not fully understood them. I have two tables, one calle 'website' and the other 'post1'. They both have identical columns, id, timestamp, author, email, url and message. $entries = mysql_query("SELECT `timestamp`, `author`, `email`, `url`, `message` FROM `website` ORDER BY `timestamp` DESC"); Thanks :)
  11. ashbow97

    Send Mail

    I was going to say, there weren't any breaks in it before :L Anyone had any luck finding the problem? I've posted this on another site as well and they haven't found anything wrong with it and when I compare it to other templates like mine... there is no difference apart from the email address which I know is right :S But I can't see their sendmail.php so it's more than likely something on that file...
  12. ashbow97

    Send Mail

    Hey, it's me again with another problem that i can't seem to solve :/ I have tried various different things, but none have worked. What happens, is when you click send, it can register and tell you if there is anything wrong with it, but when you try and send it, it gets stuck processing it (it shows a little rotating circle) and never does anything. I'm sorry the script is really messy, I'm using a template that seems to have gone crazy with DIV tags xD This is only the actual send mail part of the script and as I said, I've tried things, but I've put it all how it was to start with. Here's the actual page: http://www.dphgardenservices.co.uk/contact.php Contact.php:   <div class="contform"> <p>Required fields are marked <span class="yellow">*</span></p> <form action="#" method="post" name="contactform" id="contactform"> <div class="form_info"> <div class="form_error defaulterror">You forgot to enter your name.</div> <div class="form_error shorterror">Entered name should not be shorter than 3 characters.</div> <div class="form_error longerror">Entered name should not be longer than 30 characters.</div> <p class="fl"> <label for="name">Name <span class="yellow">*</span></label> </p> <div class="inp_l"> <div class="inp_r"> <input type="text" name="name" id="name" value="" size="22" tabindex="3" /> </div> </div> </div> <div class="cl"></div> <div class="form_info"> <div class="form_error defaulterror">You forgot to enter your email address.</div> <div class="form_error invaliderror">You entered an invalid email address.</div> <p class="fl"> <label for="email">Email <span class="yellow">*</span></label> </p> <div class="inp_l"> <div class="inp_r"> <input type="text" name="email" id="email" value="" size="22" tabindex="4" /> </div> </div> </div> <div class="cl"></div> <div class="form_info"> <p class="fl"> <label for="url">Website</label> </p> <div class="inp_l"> <div class="inp_r"> <input type="text" name="url" id="url" value="" size="22" tabindex="5" /> </div> </div> </div> <div class="cl"></div> <div class="form_info"> <div class="form_error defaulterror">You forgot to enter the subject of your message.</div> <div class="form_error shorterror">Entered subject should not be shorter than 3 characters.</div> <div class="form_error longerror">Entered subject should not be longer than 100 characters.</div> <p class="fl"> <label for="subject">Subject <span class="yellow">*</span></label> </p> <div class="inp_l"> <div class="inp_r"> <input type="text" name="subject" id="subject" value="" size="22" tabindex="6" /> </div> </div> </div> <div class="cl"></div> <div class="form_info"> <div class="form_error defaulterror">You forgot to enter the text of your message.</div> <div class="form_error shorterror">Entered message should not be shorter than 3 characters.</div> <p class="fl"> <label for="message">Message <span class="yellow">*</span></label> </p> <table> <tbody> <tr> <td class="text_t_l"></td> <td class="text_t"></td> <td class="text_t_r"></td> </tr> <tr> <td class="text_l"></td> <td class="text_m"><textarea name="message" id="message" cols="28" rows="6" tabindex="7"></textarea></td> <td class="text_r"></td> </tr> <tr> <td class="text_b_l"></td> <td class="text_b"></td> <td class="text_b_r"></td> </tr> </tbody> </table> </div> <div> <input type="hidden" value="[email protected]" id="contactemail" name="contactemail" /> </div> <div> <input type="hidden" value="php/sendmail.php" id="contacturl" name="contacturl" /> </div> <div class="cl"></div> <div class="loading"></div> <div><a href="#" class="but_styled" id="formsend" tabindex="8"><span><span class="check">Send Message</span></span></a></div> </form> </div>   sendmail.php:   <?php if(isset($_POST['contactemail'])){ $mailTo = $_POST['contactemail']; } if(isset($_POST['name'])){ $mailFromName = $_POST['name']; } if(isset($_POST['email'])){ $mailFromEmail = $_POST['email']; } if(isset($_POST['subject'])){ $subject = $_POST['subject']; } if(isset($_POST['message'])){ $message = $_POST['message']; } mail($mailTo, $subject, $message, "From: ".$mailFromName.", ".$mailFromEmail); ?>
  13. I do think this is true... but everything will produce ideas of conspiricy, so you never know whether something is actually true :L I haven't heard about it bieng an excuse to vote for him, all I've heard people saying was that they doubt it's happened because there hasn't actually been any evidence. There has been no pictures released from Obama (I know there has been once, but I don't think it's real), Bin Laden's body was thrown at sea before anyone could see it. They were quick to get rid of it :L To the '1000s will protect him' there weren't. If he had to many people crowding around his mansion, we would of found him MUCH quicker :L I think it's quite clever what he did though, he sent all his rebels to go live and travel through the tunnels of mountains, to make us all think he was in the mountains but actually, he was chilling out in a mansion... But yeah, I think it's true, who knows though, only time will tell. I mean, there was romours about Hitler still bieng around, but even if he was, he stayed under cover xD
  14. ashbow97

    Busking

    Any of you been busking or want to go busking soon? :) Yeah, I went busking for my first time earlier today, couldn't asked for better weather tbf :) Not a great first time though me thinks, i made around £13 for 2 hours of working my ass off (I play the Violin by the way) :/ I came in early to grab the best place, but then after an hour or so it started to get busy, and this other Violinist decided to stand right next to me and started. The annoying thing is, he didn't ask or anything, just came and started playing with his amp so nobody could hear me or the other buskers! I'm not the only one who got anoyed by him, I talked to some of the other buskers and they all said the same xD Don't you just hate it when people come and basically kick you out :/ Sorry I just had to say it xD Lol, Do any of you know any decent classical or folk (celtic, irish or scottish) music at all... I'm running out of stuff to play :L
  15. How much are you charging? Because I'm in need of some help quite badly but can't pay high at all :S
×
×
  • Create New...