Jump to content

bateati

Members
  • Posts

    14
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

bateati's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm trying to search the 'ad' column where 'ad' = 1 or 3 I'm having problems doing this. Here is what I currently have, but it is not bringing back 'ad' where ='1' (for obvious reasons) Here is what I thought would work, but it displays every listing in my database when I do it this way. Thank you in advance for your answers, google is not being so kind to me right now.
  2. I just decreased my queries by 40 each time that page loads, which would make my site extremely more efficient. As it was, I probably would of crashed my site if I had heavy traffic.
  3. Categories in my database are defined by numbers and I use this array if I want to display the name. <?php $inf1["1"] = "Billboards "; $inf1["2"] = "Transportation"; $inf1["3"] = "Poster / Signs "; $inf1["4"] ="Shopping Centers" ; $inf1["5"] ="Bus Stops"; $inf1["6"] ="Other-Public Advertising"; $inf1["7"] = "Concerts" ; $inf1["8"] = "Fair"; $inf1["9"] ="Trade Shows " ; $inf1["10"] = "Sports " ; $inf1["11"] ="Other-Events"; $inf1["12"] ="Banner Space " ; $inf1["13"] ="Social Media " ; $inf1["14"] ="Email Lists " ; $inf1["15"] = "Blog Articles " ; $inf1["16"] = "Ezine Articles "; $inf1["17"] = "Other-Online Advertising "; $inf1["18"] ="Magazine " ; $inf1["19"] ="Newspaper " ; $inf1["20"] = "Brochure" ; $inf1["21"] ="Press Release Print "; $inf1["22"] = "Other-Print Advertising " ; $inf1["23"] = "TV / Commercial" ; $inf1["24"] ="Radio " ; $inf1["25"] ="Mobile Phone" ; $inf1["26"] = "Press Release tv"; $inf1["27"] ="Movies " ; $inf1["28"] = "Cinema "; $inf1["29"] = "Other-Broadcast"; $inf1["30"] ="Window Display"; $inf1["31"] = "Interior Advertising"; $inf1["32"] ="Point of Sale "; $inf1["33"] = "Private Property"; $inf1["34"] = "Vehicle Wrap"; $inf1["35"] ="Frontyard " ; $inf1["36"] = "Self Promotion "; $inf1["37"] ="Other-Commercial Space"; $inf1["38"] = "Creative Advertising " ; $inf1["39"] ="Video Game "; $inf1["40"] = "Other-Misc " ; $inf1["41"] = "Other-Business" ; php?> I'm trying to make my database as small as possible and it has been easier to manage this way because if one of the phrases wasn't spelled exactly right, I'd have problems finding data in search queries. Here is a quick example of what I do to change from number to phrase. $ar = $row['category']; include "array.php"; echo 'Category:'. $inf1[$ar] .'<br>';
  4. Thanks thorpe using your code I was able to figure it out. In case anybody is curious, here is what I did. include "array2.php"; $sql = "SELECT category, COUNT(category) AS cnt FROM postlisting GROUP BY category"; if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { while ($row = mysql_fetch_assoc($result)) { $c = $row['category'] ; $t = $row['cnt']; $inf2[$c] =$t; } } } and array1.php looks like this, in order to display a 0 if no count comes back true. <?php $inf2["0"] = ""; $inf2["1"] = "0"; $inf2["2"] = "0"; $inf2["3"] = "0"; $inf2["4"] ="0" ; $inf2["5"] ="0"; $inf2["6"] ="0"; $inf2["7"] = "0" ; $inf2["8"] = "0"; $inf2["9"] ="0" ; $inf2["10"] = "0" ; $inf2["11"] ="0"; $inf2["12"] ="0" ; $inf2["13"] ="0" ; $inf2["14"] ="0" ; $inf2["15"] = "0" ; $inf2["16"] = "0"; $inf2["17"] = "0"; $inf2["18"] ="0" ; $inf2["19"] ="0" ; $inf2["20"] = "0" ; $inf2["21"] ="0"; $inf2["22"] = "0" ; $inf2["23"] = "0" ; $inf2["24"] ="0" ; $inf2["25"] ="0" ; $inf2["26"] = "0"; $inf2["27"] ="0" ; $inf2["28"] = "0"; $inf2["29"] = "0"; $inf2["30"] ="0"; $inf2["31"] = "0"; $inf2["32"] ="0"; $inf2["33"] = "0"; $inf2["34"] = "0"; $inf2["35"] ="0" ; $inf2["36"] = "0"; $inf2["37"] ="0"; $inf2["38"] = "0" ; $inf2["39"] ="0"; $inf2["40"] = "0" ; $inf2["41"] = "0" ; ?> To display, i'm doing this <td><h4>Public Ads</h4><br> <?php echo '<a href="browse1.php?cat=1">Bill Boards<a/>'; echo "($inf2[1])<br>" ; ?> <?php echo '<a href="browse1.php?cat=2">Transportation<a/>'; echo "($inf2[2])<br>" ; ?> <?php echo '<a href="browse1.php?cat=4">Shopping Centers<a/>'; echo "($inf2[4])<br>" ; ?> <?php echo '<a href="browse1.php?cat=3">Posters / Signs<a/>'; echo "($inf2[3])<br>" ; ?> <?php echo '<a href="browse1.php?cat=5">Bus Stops<a/>'; echo "($inf2[5])<br>" ; ?> <?php echo '<a href="browse1.php?cat=6"> Other-Public<a/>'; echo "($inf2[6])<br>" ; ?> <td><h4>Event Sponsorship</h4><br> <?php echo '<a href="browse1.php?cat=7">Concerts<a/>'; echo "($inf2[7])<br>" ; ?> <?php echo '<a href="browse1.php?cat=8">Fairs<a/>'; echo "($inf2[8])<br>" ; ?> <?php echo '<a href="browse1.php?cat=10">Sports<a/>'; echo "($inf2[10])<br>" ; ?> <?php echo '<a href="browse1.php?cat=9">Trade Shows<a/>'; echo "($inf2[9])<br>" ; ?> <?php echo '<a href="browse1.php?cat=11">Other-Event<a/>'; echo "($inf2[11])<br>" ; ?> <td><h4>Online Ads</h4><br> <?php echo '<a href="browse1.php?cat=12">Banner Space<a/>'; echo "($inf2[12])<br>" ; ?> <?php echo '<a href="browse1.php?cat=13">Social Media<a/>'; echo "($inf2[13])<br>" ; ?> <?php echo '<a href="browse1.php?cat=14">Email Lists<a/>'; echo "($inf2[14])<br>" ; ?> <?php echo '<a href="browse1.php?cat=15">Blog Articles<a/>'; echo "($inf2[15])<br>" ; ?> <?php echo '<a href="browse1.php?cat=16">Ezine Articles<a/>'; echo "($inf2[16])<br>" ; ?> <?php echo '<a href="browse1area.php?cat=17">Other-Online<a/>'; echo "($inf2[17])<br>" ; ?> </tr> Way more efficient than before Thankyou again thorpe
  5. Yes I know it is horrible, but at the time I just needed something that would work. I think the problem with GROUP BY was if one of the categories was 0 it would screw up the order in which the numbers were displayed in. But maybe I wasn't using it in the way you're suggesting. Could you give me a quick example of what you mean by that?
  6. I know there has to be a better way to count how many entries I have in my mysql db than what I'm currently using. Let me just show you what I'm trying to do and it will make better sense. http://batads.com/display.php You see how I am echoing the number of each category on one page? I am sure the current script I am using is insanely inefficient and as my DB grows I think it will cause me problems. Any suggestions on how to do this more efficiently? Below is what is currently running that page. Thank you. <td><h4>Public Ads</h4><br> <?php echo '<a href="browse1.php?cat=1">Bill Boards<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='1'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; }?> <?php echo '<a href="browse1.php?cat=2">Transportation<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='2'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; }?> <?php echo '<a href="browse1.php?cat=4">Shopping Centers<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='4'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=3">Posters / Signs<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='3'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; }?> <?php echo '<a href="browse1.php?cat=5">Bus Stops<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='5'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; }?> <?php echo '<a href="browse1.php?cat=6"> Other-Public<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='6'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?></td> <td><h4>Event Sponsorship</h4><br> <?php echo '<a href="browse1.php?cat=7">Concerts<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='7'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=8">Fairs<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='8'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=10">Sports<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='10'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=9">Trade Shows<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='9'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=11">Other-Event<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='11'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?></td> <td><h4>Online Ads</h4><br> <?php echo '<a href="browse1.php?cat=12">Banner Space<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='12' "; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=13">Social Media<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='13' "; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=14">Email Lists<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='14'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=15">Blog Articles<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='15'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=16">Ezine Articles<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='16'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1area.php?cat=17">Other-Online<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='17'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?></td> </tr> <tr> <td><h4>Print Ads</h4><br> <?php echo '<a href="browse1.php?cat=18">Magazine<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='18'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=19">Newspaper<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='19'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=20">Brochure<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='20'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=21">Press Release Print<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='21'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=22">Other-Print<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='22'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?></td> <td><h4>Broadcasting Ads</h4><br> <?php echo '<a href="browse1.php?cat=23">TV / Commercial<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='23'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=24">Radio<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='24'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=27">Movies<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='27'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=25">Mobile Phone<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='25'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=28">Cinema<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='28'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; }?> <?php echo '<a href="browse1.php?cat=26">Press Release TV<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='26'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=29">Other-Broadcast<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='29' "; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?></td> <td><h4>Commercial Space</h4><br> <?php echo '<a href="browse1.php?cat=33">Private Property<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='33'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=34">Vehicle Wrap<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='34'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=35">Front Yard<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='35'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=36">Self Promotion<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='36'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=37">Other-Commercial<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='37'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?></td> </tr> <tr> <td><h4>Business Ads</h4><br> <?php echo '<a href="browse1.php?cat=30">Window Display<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='30'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=31">Interior Ads<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='31'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=32">Point of Sale Ads<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='32'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=41">Other-Business <a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='41'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?></td> </td> <td><h4>Misc</h4><br> <?php echo '<a href="browse1.php?cat=38">Creative Advertising<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='38'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=39">Video Games<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='39'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> <?php echo '<a href="browse1.php?cat=40">Other-Misc<a/>'; $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='40'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) {echo '('.$row[COUNT(category)].')<br>' ; } ?> </td> </tr> </table>
  7. Hello everybody! For the most part my site is done. I need some reviews/critique/suggestions before I take it live though. (Please be brutally honest, I want this site to be best I can make it) Any type of feedback from design, functionality, wording to security would be awesome and I appreciate it! I would prefer you register an account and go through my sites registration process. . . (I'll be erasing all the current database information before I go live) But if you do not feel like it, you can use this information to login user = ibattygo@yahoo.com password = hello123 BatAds.com Thank you
  8. Take the background picture out and fix the footer(It looks a little strange). For an informational site it's not bad though
  9. The problem I had with GROUP BY was I couldn't find the code to output each category listing specifically. I figured out I could store all the information into an array and it would work. . . but if a selection was made that had 0 data in it, my array count would be screwed up and it didn't work correctly. An example of what I want * Accounting (2,854) * Business and Society (45) * Cooperatives (66) * Customer Service (275) * E-Commerce (732) * Education and Training (768) * Employment (1,036) * Human Resources (873) A more specific link of how its being done http://www.dmoz.org/Business/
  10. Hello everybody, I'm trying to write some code similar to Odesk.com or DMOZ.ORG. I need to count the number of listings in each category. Look here "http://ibatty.org/browse.php" to get a better idea of what I'm doing. That is the page I'm trying to add this function to. I've been having major issues with the COUNT function. $query = "SELECT category, COUNT(*) FROM postlisting WHERE category='billboards'"; $result = mysqli_query($dbc,$query); while($row = mysqli_fetch_array($result)) { echo $row[COUNT(category)]; } As you can see this works, but I'm trying to add State, Area code and Zip functuality to search through the data more precisely. This has been giving me problems though and the way I currently have it setup . . . I'd have 25+ SELECT COUNT() querys going on 1 page. (I don't know if that is very good?) 5$ via paypal to whoever can help me solve this. If I did not explain what I needed very well, please ask questions for me to clarify. Thank you in advance
  11. $query = "SELECT category, COUNT(*) FROM postlisting GROUP BY category"; $result = mysqli_query($dbc,$query); while($row= mysqli_fetch_array($result)) { $array[]= $row[COUNT(category)]; } Here is what I have now. I can pick certain lines from the array, technically I got it to work. But the problem is if somebody was to browse a city that had 0 listings in the category, it would throw my array count off. I'm trying to keep the search function dynamic. 5$ USD via paypal to whoever can help me. If my posts aren't making it exactly clear what I want please ask. This little function is stopping me from launching my site, very annoying. Thank you in advanced
  12. I suppose the main problem is I cannot figure out how to display the specific rows. when I add $row['COUNT(*)'] It displays 31 because I have 4 entries in all in my database. I just need to know how to have it display 1 and 3 in different parts of my page, where I can control the column the number is being displayed of.
  13. mysql version : 5.1.52 What I'm trying to do: User comes to my browser page that has a list of category's. The user can sort through the listings in my categories by state or city. By using the <select> and $_POST to provide my mysql query with the proper data, The COUNT function will let my users know how many listings are in each category, according to the state and city the user supplied. I'm trying to use the mysql COUNT function to count how many entries I have in each column. In which I can't solve myself. I want it like this http://www.odesk.com/jobs/?clear_button=1 Only difference is, I also will have a state/city search bar at top to sort the data more specifically. So far I have: table = postlisting column = category $result = mysql_query("SELECT COUNT(*) FROM postlisting "); while ($row= mysql_fetch_array($result)){ $row['COUNT(category)'] } Now if I have a column called "category" and in it is listed red 3 times, blue 2 times, green 4 times How do I get it to list Red(3) Blue(2) Green(4) I am trying to describe my issue the best I can. If I need to provide any more information please ask. Thank you in advance for anyone who may be able to help me
  14. Hello everyone my name is Ryan For the past few months I've been studying PHP,CSS, HTML and MYSQL with a tad bit of Javascript in there. I'm by no means an expert, so I decided to join this forum to hon in on my skills. I'm currently working on a advertising website which has been a pain in the ass to program so far due to my newbieness. I look forward to meeting you all.
×
×
  • 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.