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. jefargrafx

    porting a C# app into flash

    was wondering if anyone has some experience with moving a c# application into a flash solution. anyone can point me in the right direction that would be great!!!!!! Thanks Jeff Roberts kritterMedia.com
  2. jefargrafx

    php mysql join to querries with limits on both

    yep your are right, this is really MySQL not php, but man I use a lot of MySQL in my php. thanks for the help, you got me thinking about joins and this was the answer $query = db_query("(SELECT * FROM property_data WHERE 1 ORDER BY rand() LIMIT 3) UNION ( SELECT * FROM property_data WHERE...
  3. jefargrafx

    php mysql join to querries with limits on both

    I need to return two querries with different limits on each. Same table, one to return all proptype limit to 3 and another to reutrn all proptype that = "rental" limit to 1. to dipaly the content on one web page, only a total of 4 proptypes can you do this in mysql thanks Jeff Roberts...
  4. jefargrafx

    PHP Mail problem

    good idea, but the emai lis validated and got it working. was missing a header and adding the "" around the name made all the difference. thanks so much for all your help. sometime you just need another set of eye. job done jef
  5. jefargrafx

    PHP Mail problem

    the value of email is what ever the sender puts in the email form field, such as myemail@mydomain.com well I guess I could use the name field for the name, but wanted to make sure that an email address got pushed over. and I'll try the double quote idea, but did n't think that was required...
  6. jefargrafx

    PHP Mail problem

    sure, when (on my clients pc) you open the email and press the reply button either in outlook or browser based cleint the reply field is populated with emailname@ <emailname@domain.com> now on my pc it get emailname@domain.com <emailname@domain.com> and it work great!!! I've had him test...
  7. jefargrafx

    PHP Mail problem

    need more eyes on tis problem than me. I have a php mail script that take info from a form and emails it to an address. I want the user to be able to hit the reply button and have the email to field populated with what ever the sender put on the form. Now get this. It works perfect on my...
  8. jefargrafx

    copying sybase content to mysql on the web

    thanks guys, this seems like a real possibility. I'll run it pass the owners of the server and see how they fell about it. I'd like it a simple as possible and this sounds better than ftp a copy of the sybase to another pc and then insert into mysql I'll let ya know how it works out jef
  9. jefargrafx

    copying sybase content to mysql on the web

    now that a great idea, (why didn't I think of that) only possible issue is security, the stuff the have on this box needs to be safe and they dont want it exposed to the internet. But I'll ask. I'm thinking secure ftp daily might be as much as they will go. thanks jef
  10. jefargrafx

    copying sybase content to mysql on the web

    yep! odbc will get the stuff sorted, got a test version runing on my desktop and can connect via ms access just fine. I'm starting to think that a batch job that could run on the server (where the sybase data lives) that could tp an acccess file over to the webb server nightly might be a the...
  11. jefargrafx

    copying sybase content to mysql on the web

    thanks for the quick response. I'm sure this will help, but the sybase version of the database is not avaliable on the internet, so a web server will not be able to connect to the database. I've got to figure out a way to copy the sybase data over to a file (maybe access) and ftp it or copy it...
  12. jefargrafx

    copying sybase content to mysql on the web

    hello all, long time no chat. I got a request to copy part of a sybase database inot a mysql database so that we can write php to display content on a web site. The copy would need to be done once daily so I'm thinking I'll need a batch process running somehow somewhere. Anyone do this type...
  13. jefargrafx

    asp variabels with #

    got it, from another thread jef
  14. jefargrafx

    asp variabels with #

    I have a database that pulls a product number on a catalog page, I them use that number to pull product detail on a product page. I'm using <%= Server.URLEncode(rsResults("manuID"))%>"> to encode the url variable, and in ie it acts like it works (in the status bar) but whn you click the link...
  15. jefargrafx

    asp application pool

    it's an asp site, and I don't have access to the web server to view anything in ISS. no error, just plugs away trying to load the index.asp page. oh! this code is in classic asp not .net any idea jef
  16. jefargrafx

    asp application pool

    I got a real problem. I've been asked to fix a problem on a web site that someone else built. The deal is, according to the support folks at the host provider. The site will not render even the first index.asp file because the site has put itself into the application pool by itself. What's...
  17. jefargrafx

    swf to server pdf

    cool bill, but do you know if this will save a pdf back the the web server, not the user's desktop. I'm working on a soultion to allow users to converts the contents of a flash app in a web browser and save the contents a pdf on the web server, so it can be passed to proofers and fianlly to be...
  18. jefargrafx

    swf to server pdf

    anyone know if you can covert a movieclip within a swf to PDF and save it to the server with in flash. or will this require some server side coding thanks jef
  19. jefargrafx

    updating multiple rows at once

    i think it's a bit more to it than that, print_r($picSortOrderlower) show the array??? jef
  20. jefargrafx

    updating multiple rows at once

    I have a bit of code that I want to change the value of a row for very row in a table based on -1 here's my first stab and I'm confussed at why this doesn't work $query_allpicSortOrderhigher = db_query("SELECT picSortOrder FROM property_pictures WHERE propid='$propid' and picSortOrder >...

Part and Inventory Search

Back
Top