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 Chriss Miller 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: t5amec
  • Content: Threads
  • Order by date
  1. t5amec

    Sending Photos To Database via Email

    I want my users to send photos to my gallery database via email. eg:- email: user@domain.com subject: username content: photo description attachment: jpg/gif sends to gallerysubmission@mywebsite.com the data will have to be approved, but how would I go about making this happen? Make Sense...
  2. t5amec

    Free Download Email Signup

    I want to be able to send an automated email response (to a sign up) that has a link to a download file/page which expires after 48hrs. Any tips please... Make Sense? I hope so (-:
  3. t5amec

    Google Maps Display COUNTRY CODE (but not as alert)

    I have been tweaking codes and searching high and low for days now, but am looking for something like this http://www.satsig.net/maps/lat-long-finder.htm but for it to also display in the results the country code that GoogleMaps has an element. Here is the coding of the map i have on my site...
  4. t5amec

    PHP Mail Form Script - No Email Query

    I am writing a script which sends out emails to people who sign up. The signees are on an mySQL database, and the script sends the email to each email individually... Thing is, when it gets to the end of the rows in the DB, instead of it displaying a continue button, which I'd hoped, I get a...
  5. t5amec

    IF event_date > $today

    Take a look at the code below: <? $today=date("d/m/Y"); echo "<table border='0' cellpadding='1' cellspacing='2' width='100%'>"; while($row = mysql_fetch_array($result)) { echo "<tr>"; if ($row[event_date]>$today) { echo "<td>Future</td></tr>"; } else { echo "<tr><td>Past</td></tr>"; }...
  6. t5amec

    Auto Count / Increment Reset

    I'm redeveloping a DB for a new project, so have removed all previous records from relevant tables (to start a-fresh) One snub, the ID fields in the tables are auto increasing from where they left off, rather than from 1 If anyone knows how to reset the auto counters, it would be very much...
  7. t5amec

    Unable to create or edit forms

    I have inherited a database from someone who has since left the project and moved to a job in Russia The database uses a frontend that includes the forms and reports, and is linked to the backend which contains the tables Problem being, as our project is moving on, this database is to be used...
  8. t5amec

    How to center a DIV, whilst keeping content left???

    Hey I have the following code: <div id="content"> <img src="/images/main05/head1.jpg" alt="" height="60" width="578" /><br /> <img src="/images/main05/head2.jpg" alt="" height="60" width="578" /><br /> <img src="/images/main05/head3.jpg" alt="" height="60" width="578" /><br /> <img...
  9. t5amec

    FlashKit 360 tutorial won't allow buttons...

    I have downloaded the *.fla file located here (http://www.flashkit.com/tutorials/Actionscripting/Basic/Creating-Flash_Ju-76/index.php) I have got my picture circling an infinate circle, and have placed a button on the picture which links to the next scene... but when the button is pressed, naff...
  10. t5amec

    eCard/Membership Query.

    hey yo, i haven't posted here for bloody ages, how the devil is everyone! =] i am trying to start a "buzz" about a band by operating an ingenius eCard scheme. basically what it would be is someone would send a card to three chums when he does that, he will be given a free membership to the...
  11. t5amec

    Cross Check Two Tables

    I have two tables "Tbl2a" and "Tbl2b". These tbls contain details of invoices, matched and not matched. Tbl2a is the earliest report and Tbl2b is after the update. I have worked out the way to find invoices that were on Tbl2a as not matched then on Tbl2b matched. But I need to know how to...
  12. t5amec

    The beginnings of a site

    this is just a general enquiry really... when you are at the starting blocks of a website, how do you come up with the design? do you draw it, use an image software or just code it full of tables? do you make sure all code is complete and perfect before even going into details of design? does...
  13. t5amec

    Why isn't my WHERE query working

    $query="SELECT * FROM malloysGigs ORDER BY date WHERE active='1' DESC Limit 1"; The above is the query I put at the beginning of my code. I personally can't see anything wrong with it... can you? When i don't have rge WHERE syntax it works fine, but I need want it to show only the rows in the...
  14. t5amec

    Counting Characters and Date Question

    Q1. I am developing a News page for my site and on the Home Page i want to just include a short snippet (approx 177 characters including spaces) on the content, then anything after that would be left out and there would be a "more..." link to the actual news item page. Q2. The date would be...
  15. t5amec

    Searching Specific Fields (and)

    I know this is in no way the correct coding, but it gets my point across. I am building a data base for bands to post their gigs so if someone feels like they wanna go see a gig they can just search for one in their home town, county etc. They can search by: Date Venue Band Name Style Country...
  16. t5amec

    Tricky Question including PHP/MySQL/Forms

    What i want to do is edit information/content on my site, via my site, without having to go into the editors and stuff. I'm just talking about content, not coding. What I was thinking is having a page where I could log onto and it would display the contents in a form. (e.g form fields that...
  17. t5amec

    PHP Only Showing 1 ID

    I have been dabling with link PHP and MySQL and I have worked the basics. One problem, if you check it out here: http://memebers.lycos.co.uk/themalloys/create.html You will get a form, posting to a database, enter details and click submit, you will get a message saying Cheers! and a link to...
  18. t5amec

    DatePart Question

    I have a query that will turn 19/03/2004 to 3. DatePart("m",[WeekEnd]) That's ok but not what i want. Firstly I would like it so it would show the first three letters from name of the month, ie MAR. and the year too. My expertise in DatePart are as advanced as my similie making, and would lead...
  19. t5amec

    Duplicate Fields Need to be added together by name

    Hello I am trying to create a report for a list of employees and the amount of hours worked and by what project. the layout is as follows Name George Adams Project AmecProject TotalHours C 66502 40 C 66502 1008 C 66502 336 C 66502 40 C...
  20. t5amec

    control source in access not adding up

    I have a day rate field[txtDayRate] and a hourly rate field[txtHourRate] and i want to add these two fields together in a query. But when I enter =[txtDayRate]+[txtHourRate] in the control source of the total rate txt box i get nothing but blank. What's going on?! Make Sense? I hope so (-:

Part and Inventory Search

Back
Top