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: *

  1. notsoevilgenius

    Error Updating From mySQL To MySQLi

    Hello, I have a simple connect, query and display db rows that needs to be upgraded. Everything was working last week when I was last using my website now I'm getting errors because mySQL is finally dead. I now have <?php $db = new mysqli("$host","$username","$password","$database") or...
  2. notsoevilgenius

    Help Calculating Time Worked

    Hello! My on again, off again database project is on again with new bosses. Now they would like to track time worked. I have a table with date, time in and time out. I need to calculate the hours:minutes worked and show them in the table: <tr> <td><?php echo date('m/d/Y'...
  3. notsoevilgenius

    Help to Compare New Sheet to Master and Update

    It's been a quite awhile since I had to do any VBA, but I have a new project. There is a master.xlsx with all the data on it. Each month the user downloads a new batch of data. 1. I need to compare the "Subscriber" columns (value is lastname, firstname) of the new.xls to the master.xlsx to...
  4. notsoevilgenius

    NEWBEE NETWORK SETUP

    Hello, I normally just do basic server support and mostly client computer support. Occasionally I have to make changes in configurations for something to work and I often do that with technical support of whatever hardware/software system I'm working on at the time. I don't do setups, but I...
  5. notsoevilgenius

    CSS Precedence - Can I override the CSS Style Sheet

    I'm back trying to solve this issue in my ongoing shopify development. I have these three elements that are next to one another on a large screen, but drop under one another on mobile devices. The client doesn't want that to happen. <div class="one-third column alpha"> <a...
  6. notsoevilgenius

    Change CSS for Mobile Portrait

    I have a friend that has a site on Shopify with is enough of a pain in the ass. This is what she has now... This is what she wants it to look closer to... She kept telling me she wanted the flexslider on the page to only show part of the image when displayed in portrait on a smartphone...
  7. notsoevilgenius

    Upload and append data monthly

    I have to develop a new commissions database. The data will come from a corporate company each month in xls format. The user will need to upload the sheet each month - from a simple user gui a. An automated process will have to strip out the data that doesn't pertain to the client (I'll use...
  8. notsoevilgenius

    Summarizing data from different worksheets

    I have worksheets tabbed by month. Column A - Subscribers (unique) Column B - Agents (duplicates) Columns E thru ?? Agents (unique) I added a tab called Report The user wants to be able to pick a single agent and get a yearly total. There can be different subscribers (A) and agents (E thru...
  9. notsoevilgenius

    Add/Insert user input into database return filter

    Hello! Can anyone help me add a user input to filter mysql database return. Right now I'm using alphabet buttons to filter the table return of a list of names from a donor table. They work great and I'd like to keep them. <script> var btns = ""; var letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; var...
  10. notsoevilgenius

    Add A Search

    Can anyone help me add a search box into my code where the user can filter the database better? A have page that list people from a donors table. By default when the page opens it returns everyone in alphabetical order by last name then first name. Above the table on the page are alphabet...
  11. notsoevilgenius

    Create a php input form with uneditable fields populated from another table

    I have a donation list page that displays data from the donation and donor tables. I put a record edit link on each row and on the record edit page where I know have the donor_id I'd like to display the donor name (stored in the donor table) associated with that donation record but have it...
  12. notsoevilgenius

    PHP page loads slowly and always needs to be refreshed before loading correctly.

    I have a main user php page that has a lot of stuff going on. I return a lot of php data into a table that only shows 10 rows at a time using javascript. I also have an add new form under that. The issue that when opening that page I almost always get the data listed without the html and css...
  13. notsoevilgenius

    How do I make postal addresses, from SQL output accessible to map applications?

    I have the following code that works and looks really nice according to my CSS rules. <div class="col-lg-4"> <!-- Workshop Schedule --> <h4>Workshop Schedule</h4> <?php while($row = mysql_fetch_array($result)) { ?> <dl> <dt><?php echo date('m/d/Y'...
  14. notsoevilgenius

    Choosing when to display an object

    I need to move a page column's content over one without putting anything in it's place. I thought it may be simple(ish) to put an invisible object in that spot pushing the visible column over. The issue changes when mobile browsing and there is a huge blank spot between content. Is there a...

Part and Inventory Search

Back
Top