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 TouchToneTommy 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: s0crates9
  • Content: Threads
  • Order by date
  1. s0crates9

    Excel Macro to replace all cell commas with hard returns

    Let's say that I have an excel sheet with words seperated by commas, and I want to create new lines/hard returns - how would I create a macro for that. So Far I was able to find a method to do this to the first comma on a cell, but not how to loop through all the commas in a cell and not the...
  2. s0crates9

    Upload text file, read, then download result

    Is there any simple way to take an uploaded file, place it into an array, read line by line and then append it to a variable, finally exporting a textfile download with the results? For example: 1) user uploads text file with 20 line items including words like: apple orange pear banana etc. 2)...
  3. s0crates9

    Calling parts of a flash file into seperate html files

    I would like to have an all flash website, but I want to be able to have each section of the flash to be on it's own page. For example, I would like to have a site with the categories: Contact us About Us Services News So essentially, when the user navigates through the flash file from...
  4. s0crates9

    Copying data from one tab to another using criteria and alternate rows

    Hi. I have a pretty difficult question, at least to me. I am used to Excel and using Formulas, but when it comes to VBA, I am a noob. Here is what I have been trying to accomplish to no avail. I have an Excel workbook with two sheets. Once is called "Source", the other is called "Display". The...
  5. s0crates9

    Executing php scripts in qmail files

    I am trying to find out how to get a hp script to run on incoming email. I tried creating a file in /var/qmail/alias/ called ".qmail-emailaddress" which had in it: "|/dir/to/script/script.php". I also tried to experienment sake, to create a user based alias file with the same name and entry...
  6. s0crates9

    Not sure how to implement Mysql if-else statement

    I have three tables in my test db. we will call them, "category","item" and "data". What I want to do it have a delete statement that will remove the selected "category" ID then look for "items" or "data" that are associated with the "category" being deleted. I am not sure how to do this, but I...
  7. s0crates9

    ASP.net page information capture

    I am completely new to actually coding in ASP.net and I wanted to know if there is a way to "capture" page information in ASP, given that a site has an internal search engine (like google for your site). By page information, I mean, referers, queries, pagename, ip, browser, the whole gamut. If...
  8. s0crates9

    How to Clear Browser Cache in Javascript?

    Hi everyone. I've got a unique question. Is there a command or way to clear the browser cache onclick? I would like to apply a button on a test page that can clear browser cache from IE, Firefox, Netscape, etc. Any assistance in this would be awesome. I suspect there is a way since in...
  9. s0crates9

    Excel - reference date in one tab to statistical data in a second tab

    I am wondering how I can do this: I have an excel file with 2 sheets. One has a summary, date and some numerical data from the 2nd tab. The second tab just has a bunch of stats by date. I want to be able to change the date in the first tab and the stats get "pulled" from the second tab onto the...
  10. s0crates9

    Using Curl to get specific information returned

    Hi everyone. My problem is that I would like to use Curl on a php page to go out and use the inventory.overture.com tool for some keyword research then to return only the result that I queries for, without leaving the page or at least not displaying that it went to inventory.overture.com. I...
  11. s0crates9

    Convert HTML code into Text

    I have used file($url) as a way to grab a webpage and I am interested in knowing how to turn that code into true HTML code in text format instead of activated HTML. For instance I might pull off a link form a website and it will show up when displayed from a variable like so: Active link...
  12. s0crates9

    Php regex detecting flash object tags

    Hello eveyone. I am not really that good at regexes and I have been working on oe to identify Flash <object> tags and I am not having any success. Can anyone help me out? Here is the code I have set up to detect the tags: if...
  13. s0crates9

    Help with parsing a page element

    I am trying to get link popularity from google and haven't been able to isolate the section I need. Perhaps my regex is wrong or something else, but I've been experimenting with eveything and cannot seem to grab the line with results. take a look: function getlp($url) { $file =...
  14. s0crates9

    Manipulating tabbed data from a log file

    Essentially what I am trying to achieve is to collect data from a custom log file. I already created an apache log that reports data like this: siteip sitename pagename I am trying to collect line by line these elements and I am not sure how to grab them first by line in a text file and...
  15. s0crates9

    Formatting excel throuh php export

    I am trying to figure out how to format an excel sheet that has been exported through php. What I did was get the file to export into excel from mysql, however I want to have the look and design of the excel sheet to be as if I had created the excel file manually. The colors, bolding, font...
  16. s0crates9

    Problems sending email through php

    Using php's mail() function on a certain server, I am getting no mail sent. I tried running a simple mail script and also by command line to get no emails sent. I have tried the same mail() command on another server and it works fine, as a matter of fact, there is another virtual site on the...
  17. s0crates9

    Creating a Search Engine Position Checker

    I have a couple of terms I am looking into the positions of on MSN. I was curious to find out how I would go about coding a simple page that would check the SE position on a daily level. Essentially I would like to check for a specific URL and just track on each day where that position is. I...
  18. s0crates9

    stripping html file of only links

    I want to essentially strip out everything from an html document except the links. I want to place these links into an array as well. I have this so far, but it is not placing each link on a seperate line, rather it seems to be in one long line: $lines = file("index.html"); $html =...
  19. s0crates9

    Getting a paramatized URL to appear static

    I believe this is possible but i have no idea how to actually do it. I would like a database retrieved page such as: http://www.site.com/page?elem=45 into this: http://www.site.com/section/pagename.html I do not want to use mod_rewrite so I am hoping to achieve this through php and mysql...
  20. s0crates9

    If statement problem

    I want to be able to have a MYSQL statement which will determine to use a field if it is available. I am having problems getting this to work. I am trying to show a field if it is not null or set to zero. An example set up: Table 1: page [Fields: url, name, id] Table 2: sub page [Fields: url...

Part and Inventory Search

Back
Top