Get exclusive CAP network offers from top brands

View CAP Offers

I need a database guru, have questions

[bsa_pro_ad_space id=2]
  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #595927
    Anonymous
    Inactive

    I have a database that can be in Access or converted to an Excel spreadsheet. I need to know if it is possible to automaticly pull certain things from the database that I define, like all phone numbers that start with 3 along with the names that are attached to them and put it inside an html template I create.

    I am a complete idiot about databases, and spreadsheets for that matter, so my apologies if the question doesn’t make any sense. If you need more information, let me know either here or via PM.

    Thanks in advance

    #700551
    Anonymous
    Inactive

    Run a query similar to:

    SELECT
    `name`,
    `address`
    FROM
    `mydatabasetable`
    where phonenumber like “3%”

    PS – if you need some code (like php), then just respond with the database structure and I’ll whip something up

Viewing 2 posts - 1 through 2 (of 2 total)