Jump to content

tinkertron

Members
  • Posts

    49
  • Joined

  • Last visited

    Never

Everything posted by tinkertron

  1. I would have to get back with u on that cause I took down my server and it might not be up for another month.
  2. No I was not able to get this resolved so I told the company and they gave me a un-encypeted version. Sorry wish I could have been more help.
  3. Ahhh OK, so can someone design the CSS coding for me or not? As I mention before I don't know the first thing about CSS. I wish they keep html as it was, but that's just me.
  4. I don't want margins, even thought is shows margin here, that cause the grid is a software that I bought and I believe the margin is set somewhere in the CSS file, which I don't know much about CSS, so I was hopeing that someone on here would be willing draw me up one. #1 - A header with control bar (area remain fixed) #2 - a main content area that will scroll up and down, left and right. (no margin or padding either)
  5. Are you up for hire? or are you swamp? With the current software that I have, majority of the programming is already done. How much would you charge me to help me get this project done?
  6. jl5501 thanks for the posting. I will refer to this often as possible. Right now i'm running into a few bumps in the road, (if it's not one thing, it's another). I didn't know that I would be getting myself into this much trouble, but I am insisted on getting this project done, so that I can show it off to my employer and be done with it. I have invested to much time and money into this project that I wish it would be done by tomorrow, but it doesn't look that way. I wish I could hire a php/mysql css programmer and be done with it, but i'm limited on funds and so on. I bought this phpgrid from phpgrid.com and I though all my prays were answered, but it's still not :'( Check out my current page that i'm working on http://tdcj.homeip.net/main.html (tell me what you think, also the grid on there is an example and not the correct content that I will be putting in.)
  7. Is it possible for someone to convert this frame page http://tdcj.homeip.net/main.html to CSS like page? I need the function to be the same in regards to the maincontent arear to scroll up and down and left to right without the header of the page being affected.
  8. You got a deal, I hope you live near Dallas, Texas. I will do alittle shame work to get something back that would benefit me in the long run! Peace!
  9. jl5501 hey thanks! Even if it doesn't at least I can learn from the code. Thanks!
  10. I got the CSS layout from a website, but I want to add tabs to it. I don't know the first thing about CSS, but i'm learning. Can someone add these tabs to the header for me? Tabs: Database - index.html TechStats - techstats.html PendStats - pendstats.html OfficerStats - officerstats.html CourtDates - courtdates.html HearingDates - hearingdates.html Cont.Supv - contsupv.html ISF/SAFP - isfsafp.html Revoke - revoke.html I'm not looking for anything fancy, simple box tabs would do just fine. The only thing that I would like to see is if the client is on a page one of those page that the tab is a off set color from the rest, that way they would know what they are looking at. Your help is greatly appricated! Oh here's the CSS layout that I want to uses: <!--Force IE6 into quirks mode with this comment tag--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Dynamic Drive: CSS Top Frame Layout</title> <style type="text/css"> body{ margin: 0; padding: 0; border: 0; overflow: hidden; height: 100%; max-height: 100%; } #framecontent{ position: absolute; top: 0; left: 0; width: 100%; height: 100px; /*Height of frame div*/ overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/ background-color: navy; color: white; } #maincontent{ position: fixed; top: 100px; /*Set top value to HeightOfFrameDiv*/ left: 0; right: 0; bottom: 0; overflow: auto; background: #fff; } .innertube{ margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/ } * html body{ /*IE6 hack*/ padding: 100px 0 0 0; /*Set value to (HeightOfFrameDiv 0 0 0)*/ } * html #maincontent{ /*IE6 hack*/ height: 100%; width: 100%; } </style> <script type="text/javascript"> /*** Temporary text filler function. Remove when deploying template. ***/ var gibberish=["This is just some filler text", "Welcome to Dynamic Drive CSS Library", "Demo content nothing to read here"] function filltext(words){ for (var i=0; i<words; i++) document.write(gibberish[Math.floor(Math.random()*3)]+" ") } </script> </head> <body> <div id="framecontent"> <div class="innertube"> <h1>CSS Top Frame Layout</h1> <h3>Sample text here</h3> </div> </div> <div id="maincontent"> <div class="innertube"> <h1>Dynamic Drive CSS Library</h1> <p><script type="text/javascript">filltext(255)</script></p> <p style="text-align: center">Credits: <a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a></p> </div> </div> </body> </html> Note: I did notice one issue with this CSS, once I remove the <script type="text/javascript"> /*** Temporary text filler function. Remove when deploying template. ***/ var gibberish=["This is just some filler text", "Welcome to Dynamic Drive CSS Library", "Demo content nothing to read here"] function filltext(words){ for (var i=0; i<words; i++) document.write(gibberish[Math.floor(Math.random()*3)]+" ") } </script> and put my own content in (a datagrid that is long) the scroll bars disappear. I need to be able to scroll up and down and left to right in the main content area only. The header stays in place. Can anyone help me on this too?
  11. Your very welcome! I hope you all the luck in the world! Peace! If this has resolved your issues, please mark post as RESOLVED!
  12. No CRUD is not another application, it's Create, Read, Update and Delete (CRUD)... I'm looking to see if there is a php coding for sorting my current but simple grid. Or is the sorting done thought MySQL? I want to force sorting.
  13. I would love to show you how, but time is limited. But I can tell you how I did mine, if you don't mine doing alittle reading. Goto http://www.w3schools.com/php/php_mysql_intro.asp But here is what I cut and paste from the site: <?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); $result = mysql_query("SELECT * FROM Persons"); echo "<table border='1'> <tr> <th>Firstname</th> <th>Lastname</th> </tr>"; while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['FirstName'] . "</td>"; echo "<td>" . $row['LastName'] . "</td>"; echo "</tr>"; } echo "</table>"; mysql_close($con); ?> Now this is an example, you'll have to read the code and add or delete what you need. But I would suggest to try the site and learn from their examples and you'll get the hang of it, if you done it before. Cheers!
  14. I have acouple of online CRUD grids or tables or whatever you want to call them. But here is my question. How do I sort the table to display LastName, then FirstName, then by City in alphabetize order?
  15. I don't know much about MySQL. I do know how to create a db, but not tables. The whole VARCHAR and DATE and all that mobojambo has given me a headache. So i'm asking for help. Not sure is this is some quick and easy, or if I should be paying someone to do it, but I'll ask nicely, please. Here's what i'm looking for. Officer Name > 15 Characters AssignmentDate > MM/DD/YY LastName > 15 Characters FirstName > 15 Characters StateID > 0####### TDCJID > 0####### InstantOffense > 40 Characters DischargeDate > MM/DD/YY ArrestDate > MM/DD/YY BookingNumber > ######## Allegation1 > 40 Characters Allegation2 > 40 Characters Allegation3 > 40 Characters Allegation4 > 40 Characters Allegation5 > 40 Characters Allegation6 > 40 Characters Allegation7 > 40 Characters Allegation8 > 40 Characters Allegation9 > 40 Characters OffenseType > 5 Characters CourtDate > MM/DD/YY InterviewDate > MM/DD/YY HearingDate > MM/DD/YY HearingType > 14 Characters BoardDate > MM/DD/YY BoardDecision > 11 Characters Status > 30 Characters Thank you...
  16. Maybe it's just me, but if I were you I would edit that file and remove any username and password that you have shown in that file. I wish I could help, and I try to look at the php file. Are you sure that you created the db in your MySQL? Is it listed?
  17. jl5501 I would greatly appreciate this. and if you wouldn't mind can you also do this for edit? I would need the db to be as up to date as much as possible. I just notice that problem today, when I add a entry the db does not show the add information unless the user refresh the page :'( it one thing after another. I did buy a php application from phpgrid.com but unable to get it to work. I have someone from the UK helping me. I made a new years resolution to quit smoking, but this project is not helping :-\ , I need a simple but easy grid with the information as shown on the tabs, other then the database, the rest I can do, hopefully. As soon as this project is complete and I get the pat on my back, then I will quit smoking, and move on in my life.
  18. Monkeh: You've changed the code twice, simlar to each other but I started seeing alot of backlashes "/" why the reason for this? You went from this <input type="checkbox" name="delete[]" value="<?php echo $row['id']; ?>" /> to this echo "<td><input type=\"checkbox\" name=\"delete[]\" value=\"" . $row['id'] . "\" /></td>"; am I missing something here?
  19. I think I follow but the code seem to be wacky to me, so i'm going to post my code, and maybe you can show me: <?php $con = mysql_connect("localhost","username","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); $result = mysql_query("SELECT * FROM Persons"); echo "<table border='1'> <tr> <th>Firstname</th> <th>Lastname</th> </tr>"; while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['FirstName'] . "</td>"; echo "<td>" . $row['LastName'] . "</td>"; echo "</tr>"; } echo "</table>"; mysql_close($con); ?> Also where would the "link" or "button" appear to either delete or edit?
  20. I want to take this moment to thank alot of you for giving me the courage to dive into this head first on learning php/mysql. I'm getting very near to getting my first online database up and running. Your more then welcome to see what I have learn so far! Even test drive it yourself. http://tdcj.homeip.net/test.php ... So here's my question: If I want to add check boxes next to the entries, would I have to make a special colunm in MySQL table, if I want to make it funcation to edit or delete that entry? I'm learning as I go... Thanks
  21. I need to see whom might try to access my secure website outside of my agency. Since this database I will be hosting on my own system and network. I might have to SSL/TLS the site, so that only my empoyees can access the site.
  22. I think I found the name of the application that i'm looking for, but most are for purchase price and they are not a php/mysql type application, even though there are some out there. The name is called "Traffic Analyzers". So now i'm takeing suggestion from the community. Which would you suggest? Which are the best but free?
  23. Is there an application that will record vistor information and automacatly log them into my MySQL DB? Information i'm looking for, Date and Time of arrival to website, IP Address, Host Information, Browser Information, Returning Customer, or first time vistor. I believe there are application like this out there, but don't know what they are called.
  24. I've been working all day on my web site and haven't mess the any installation file of the php, which got me to wonder why this error appear. where is this log file?
  25. phpMyAdmin - Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.
×
×
  • 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.