236 Posted Topics

Member Avatar for martinkorner
Member Avatar for UberAAZ
0
433
Member Avatar for millenniumtrade

PHP and ASP are also server-side options. I have heard of people using javascript to load html files as well.

Member Avatar for tgreer
0
141
Member Avatar for puddin
Member Avatar for puddin
0
116
Member Avatar for benzspider

[PHP]<p> This result of the is : <? echo "$result" ; ?></p>[/PHP] Where did you define $result? And it is also better to use <?php than <?

Member Avatar for DanceInstructor
0
132
Member Avatar for thefreead

How about a gift card to someplace like Sears, Target, Wal-Mart, etc... But how are you verifying those recommendations?

Member Avatar for thefreead
0
100
Member Avatar for woofytalk

Add this line to the <head> of your index.html: <meta http-equiv="refresh" content="0;URL=forums/index.php"> People visiting your site will be sent directly to your vbulletin index. That is the "easy" way. Maybe someone else will post the hard way :p

Member Avatar for DanceInstructor
-1
100
Member Avatar for dcc

A tad off topic, but this is a great site about scams etc: [url]http://www.419eater.com/[/url]

Member Avatar for nizzy1115
0
225
Member Avatar for pavankishore

I suppose the best option would be to add to the standard context menu, is that an option tgreer?

Member Avatar for Comatose
0
168
Member Avatar for chaom79

$pos = strpos ($HTTP_USER_AGENT, $value); You have not defined this variable and it is not good practice to use a reserved name for a variable name. So use this: $u_agent = getenv('HTTP_USER_AGENT'); $pos = strpos ($u_agent, $value); The issue for the OS is similar, you should see it now ;)

Member Avatar for chaom79
0
150
Member Avatar for quansah
Member Avatar for Brims

You can find a login script here: [url]http://www.evolt.org/PHP-Login-System-with-Admin-Features[/url] I think it is a fairly good solution. Of course integrating it with your website will pose challenges as Troy mentioned. There is alot of discussion after the article so I suggest you read the comments as well as the article to …

Member Avatar for Troy
0
200
Member Avatar for Dani

Hmm. How about taking some of the latest blog posts and including them in an email? Kind of like someone else does that spams me, but I didnt block them because some of the info actually interested me. Might generate some return visits.

Member Avatar for AlexJ
0
222
Member Avatar for dabombtom
Member Avatar for al-joe

How are you getting the values from the database? What server-side language are you using?

Member Avatar for al-joe
0
124
Member Avatar for GR Web FX
Member Avatar for aboyd

I recommend you take the high ground. From your description of the problem it sounds as though you can. Be completely open. Make an announcement about the issue and explain the situation to your members. I would unlock the pms ASAP. Otherwise your members will feel as though you are …

Member Avatar for Dustin07
0
141
Member Avatar for seh1

I think that is an end-user issue and has to be changed in the page setup part of the print dialogue. To my knowledge there is no way to effect those settings using PHP.

Member Avatar for seh1
0
82
Member Avatar for msaqib
Member Avatar for reilly4three

Find someone local to you. Get a non-disclosure agreement written up. Make the local web designer sign it before talking talking to them about your idea. Then at least you have some legal recourse if necessary.

Member Avatar for DanceInstructor
0
82
Member Avatar for michael123

You will either have to 1) do another database request when processing the form to get your values or 2) use some javascript to grab the select value then add the hidden value to submit the form.

Member Avatar for DanceInstructor
0
4K
Member Avatar for zoiks

That is a PHP error, but you haven't posted any PHP code for us to look at...

Member Avatar for tgreer
0
102
Member Avatar for brokehorsesdotc

The page has no doctype defined. If there is no doctype defined each browser will use its "preferred rendering mode" or "quirks mode". What happens is that pages can look radically different depending on which browser you use to look at it.

Member Avatar for fisheye
0
387
Member Avatar for Dani
Member Avatar for StandardsDT

Its something in the javascript file you are linking to: ( i don't know what ) <script type="text/javascript" src="chromejs/chrome.js" /> remove that and it displays in IE...

Member Avatar for StandardsDT
0
223
Member Avatar for Dani
Member Avatar for Dani

You can edit your post for a short time after first posting, but once the time period is up you can't edit them anymore.

Member Avatar for shimon
0
153
Member Avatar for varuna1

The page the form is submitted to is on the old site correct? At any rate you need to edit the page the form is submitted to and add a header using PHP [PHP]<?php // make sure to verify your data header("Location: http://oldsites_name/oldsite_page"); ?>[/PHP] Make sure when using the header …

Member Avatar for varuna1
0
234
Member Avatar for dsureesh

Sessions expire automatically, I don't think you can force a session to expire. The time limit for a session is set by the [B]session.cache_expire directive[/B]. You should be able to set this directive at the beginning of your script using the [B]ini_set[/B] function. That way you determine how long the …

Member Avatar for Troy
0
118
Member Avatar for bwest
Member Avatar for php4ever

You could use curl or file() to get the page and then add your code before sending it to the iframe. Doesn't sound very ethical though if you don't own the page.

Member Avatar for Troy
0
191
Member Avatar for screwrup

[QUOTE=conspiringfate]ok dude.. . email me.. .lets fix this... i understand your problem but i really dont wanna type out the code[/QUOTE] Why not help her solve the problem here? If so then everyone else will have the opportunity to see the solution and learn something...

Member Avatar for DMR
0
211
Member Avatar for Steel Rat

-> is used for object oriented PHP. So if you have a class called user and the user class has a function called login and a variable called name. You would create an object from the class called John maybe. So to log John in you would call the login …

Member Avatar for Steel Rat
0
134
Member Avatar for kyehia
Member Avatar for martinkorner

AJAX will do this, but it's probably overkill for most situations. How long is it taking the page to load?

Member Avatar for tgreer
0
152
Member Avatar for javafan

If you are talking about where you have [CODE]http://www.BuyPixelScript.com[/CODE] it is because you aren't using anchors.

Member Avatar for xempth
0
113
Member Avatar for GTX

[QUOTE]/Forum2/includes/tiny_mce/langs/.js[/QUOTE] langs/.js ??? that isn't a proper filename

Member Avatar for DanceInstructor
0
89
Member Avatar for fogofogo

If I need info about PHP I always check php.net first. The [URL=http://php.net/manual/en/funcref.php]function reference[/URL] is great. There are usually some code examples and user discussion at the bottom of each page. Other places to find articles, tutorials, and code snippets are: [URL=http://www.daniweb.com/code/php.html]DaniWeb PHP Code Snippets :)[/URL] [URL=http://www.phpbuilder.com/]phpbuilder[/URL] [URL=http://www.spoono.com/php/]PHP section at …

Member Avatar for fogofogo
0
90
Member Avatar for rcasinillo_s

It means the webserver doesn't have permission to write to the "Uploads" folder that you created. The webserver runs as a different user, so you will need to change permissions on the folder or chown (change ownership) of the folder to the webserver. Yay me 200 posts :lol:

Member Avatar for paradox814
0
257
Member Avatar for hinde
Member Avatar for DanceInstructor
0
943
Member Avatar for 1andyw

I think what you have looks ok. You could massage the format a bit? Personally I would prefer the time show on the left side of the event: 10:00AM Ceramics Looking at the page I don't "readily" see why it is not acceptable, but then again I am not familiar …

Member Avatar for namit
0
150
Member Avatar for Wistow

If you placed the database backup on the server via ftp, then I suggest you check the permissions, assuming you have a linux based server. If you are trying to upload the file using vbulletin, then you may need to split the file up into smaller chunks as many servers …

Member Avatar for MaxM
0
124
Member Avatar for dsgnews
Member Avatar for roda
Member Avatar for simoncharris
0
365
Member Avatar for ashneet

Are you sure it is returning a result? I don't think an empty result will cause it to die. So what I mean is that for some reason there is no result for either query, therefore they are the same result... Dance

Member Avatar for ashneet
0
127
Member Avatar for Dani

I have no experience with Plesk... Have you tried bookmarking the phpMyAdmin page? I can do that in cpanel and then login when it tries to access the page.

Member Avatar for Dani
0
254
Member Avatar for MORTGAGEman

Option 1: Create a page - index.html. Put it in your main webroot ex: [url]www.todaysfishing.com/index.html[/url]. In that index.html put this in your header: [HTML]<head> <meta http-equiv="refresh" content="0;URL=http://www.todaysfishing.com/forums/" /> </head>[/HTML] If you choose this option you could add some text in <h1> tags for seo purposes. Leave the text black and …

Member Avatar for Leo-D
0
303
Member Avatar for Libertate

You are correct about phpBB. If you mod it then update or change templates then you can have some major headaches. [QUOTE=Libertate]Yes... I am. I have looked and looked and looked. Came to the realization that there is a major management problem with phpBB. All hacks/mods/add-ons (mods hereon) use SubSilver …

Member Avatar for Libertate
0
763
Member Avatar for autocrat

Have you looked at Mambo? There should be a way to set it up so that the user has an account to add articles, but not have admin priviledges. When I first looked at Mambo it was pretty confusing to me, but after playing with it for a couple of …

Member Avatar for vimkar
0
409
Member Avatar for andrewgowland
Member Avatar for jewboy

It was interesting to find out about John Chambers and CISCO. Its admirable that he was willing to sacrifice his pay to help the company, instead of trying to bleed it dry and get out....

Member Avatar for seobook
0
197

The End.