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 wOOdy-Soft 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: tijerina
  • Content: Threads
  • Order by date
  1. tijerina

    PHP and sendmail???

    I know how to send mail via sendmail, but I am lost as to where within my calendar script where I can place my sendmail script.. I have an interactive calendar that my users can schedule an appointment if they need services. I would like to have my interactive calendar send me an email once...
  2. tijerina

    Too many columns in my final awk out script.

    I have this one report that has information that I need to extract and formalized into a more readable solution.. Here is the code: ----------Start of Code Snippet-------------------------- BEGIN { FS=";" frmt="|%-10.10s|%-8.8s|%-9.9s|%-10.10s|%-6.6s|%-10.10s" frmt = frmt...
  3. tijerina

    Did I meet a threashold?

    My site is www.lztworld.com/index.php the code in it is: <html> <head> <title>Company Incorporated -- We make "IT" simple!</title> </head> <body> <table width="100%" height="100%" bgcolor="#FFFFFF"><tr valign="top"> <td width="45%">&nbsp;</td> <td width="10%"> <table bgcolor="#ffffff"...
  4. tijerina

    I am trying to center my index.php webpage..

    Hello all, Here is a snippit of my inded.php file.. -----start of snippit----------------------- I would like to center this entire webpage, I am not sure how to do it. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Company Incorporated -...
  5. tijerina

    .htaccess/.htpasswd a file not a directory..

    Is there a way for me to password protect a php file rather than the entire directory? I have posted this question in the php forum but no reply as of yet. Please forgive the multiple posts of this question. I have a php calendar that allows people to schedule appointments. And once they...
  6. tijerina

    A php file and .htaccess/.htpasswd

    Is there a way for me to password protect a php file rather than the entire directory? I have a php calendar that allows people to schedule appointments. And once they schedule it, there first name will appear on that specific date and time they choose. But the name that is on the calendar is...
  7. tijerina

    Grep and ls question.

    I am trying to grep a directory for strings that are in multiple files in this directory. Example, I want to find all the files in currentdir located in /dir1/subdir2/currentdir that contain a string SS0052S00 but I walso want to list the dates. How do I do this? Thanks..
  8. tijerina

    Can't find the solution with my html..

    Here is my code snippit: <table width="650" height="100" border="0" cellspacing="0" cellpadding="0"> <td bgcolor="ffffff" width="217" height="28" > <a href="http://www.mysite.com/site2.php" onMouseOut="MM_swapImgRestore()"...
  9. tijerina

    A HREF color question???

    What is the HTML syntax/code do I use to change the color of a link. Right now my sites links default to grey and it looks bad. I would like to change the link to another color. For example: My click here looks like this click here And I want it to look like this or something other than...
  10. tijerina

    Using AWK on with POSIX.

    Hello all, I am using an HP3000/MPE system, I am using the Unix sub system under this operating system. This Unix sub-system (POSIX) does have AWK and I am trying to do the following: I have a large file that has three reports in one. Instead of using a database, I would like to pars this...
  11. tijerina

    Two images side by side.

    I am trying to place two images in the middle of my webpage using HTML, not frontpage. How do I put two images one on the left and one on the right side and under the two images, I want to put some text. Sample: Image1GoesHere Image2GoesHere text...
  12. tijerina

    Looking for some suggestions.

    I have a large file that has three reports in one. Instead of using a database, I would like to pars this file and output it to a file that I can create and has columns in it. for example: The three in one file has info that looks like this: ----------first file in this appended report...
  13. tijerina

    Emulator Error??

    I currently use Reflection X to connect to my HP/UX server. I am testing a new emulator called ViewNow X. The command line I use for display purposes is: (/usr/bin/X11/hpterm -fn 6x13 -sb -ls -display -name %T% &) And this works fine with Reflection X. When I use ViewNow X, I get the...
  14. tijerina

    SSL question.

    I have asked this question previously and have implemented what was responded per tek-tips replies. How do I HTTPS protect a directory or a couple of web pages on my website. Meaning. I have a website that has a checkout page, it is located at /var/www/html/checkout how do I protect...
  15. tijerina

    PHP Chat Install question..

    I am currently trying to install an opensource php chat room on my site. I downloaded the file and have placed this downloaded file into /var/www//html/chat. I am a bit perplexed about the instructions, I have not unzipped the file yet because I am not sure if this should be placed in my root...
  16. tijerina

    Image is not centered???

    I have a site that has three images centered on the main page (index.php). Image1 Image2 Image3 When I replace Image2 with another image (.bmp) it looks like this. Image1Image2 Image3. Image2 moves to the left and is no longer centered between Image1 and Image3. Here is the code...
  17. tijerina

    Image is not centered...

    I have a site that has three images centered on the main page (index.php). Image1 Image2 Image3 When I replace Image2 with another image (.bmp) it looks like this. Image1Image2 Image3. Image2 moves to the left and is no longer centered between Image1 and Image3. Here is the code...
  18. tijerina

    Modify a row..

    I have php website and I upload images to my site via my php written admin tool. I have an input box in my admin tool that is defined as this: $prod_desc = $row['prod_desc']; Within my admin tool web page, I can add a long text description. The problem is when i cut and past text into the...
  19. tijerina

    Suppressing a &quot;Security Information&quot; message??

    The following code snipit is what I am using to secure my website, this snipit of code is located at the top of my index.php file. -------start of snipit------------------------------- <?php if (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS']!="on") { $header = "Location...
  20. tijerina

    In a loop.

    I am using the "header" method (per some awesome feedback from this forum) to redirect from http to https. I added the "header" method to the top of my index.php file. ----start of snip------------------- <?php header("Location: https://www.mysite.com/");exit; $user_login = ""...

Part and Inventory Search

Back
Top