Search found 60 matches

by thallish
Wed Oct 19, 2005 8:02 am
Forum: Miscellaneous
Topic: [SOLVED]Problem with getting parameter from html with applet
Replies: 5
Views: 1237

ok now i know what i'm gonna do. i'm gonna pass the content of the session variable to the applet and see if that works out.

i'll reply as soon as i'm done (or done for)
by thallish
Wed Oct 19, 2005 7:37 am
Forum: Miscellaneous
Topic: [SOLVED]Problem with getting parameter from html with applet
Replies: 5
Views: 1237

ok feyd that's what i meant :lol:

Specifically where this session information resides

Is this something i should look at Apache for or do you have any hint's on how to accomplish it?
by thallish
Wed Oct 19, 2005 7:28 am
Forum: Miscellaneous
Topic: [SOLVED]Problem with getting parameter from html with applet
Replies: 5
Views: 1237

[SOLVED]Problem with getting parameter from html with applet

Hi guys I've been working my brain for some time now with this and i havn't found a solution to this problem. What I'm trying to do is to make a applet that dynamically makes a lot of buttons according to how many different links the currrent user has in a table. I'm using a signed applet because I ...
by thallish
Sat Sep 24, 2005 3:16 pm
Forum: PHP - Code
Topic: execute local program from extern server? is this possible
Replies: 5
Views: 287

it exist on the local computer
by thallish
Sat Sep 24, 2005 2:39 pm
Forum: PHP - Code
Topic: execute local program from extern server? is this possible
Replies: 5
Views: 287

hii Regarding internet capabilities of doing so, you probalby already know everything you get on the internet is downloaded , that is, it's going to be on your harddiask anyway. but thats what so cool with PHP you dont download PHP-pages, but processed PHP-files :wink: But to clarify my question a b...
by thallish
Sat Sep 24, 2005 1:35 pm
Forum: PHP - Code
Topic: execute local program from extern server? is this possible
Replies: 5
Views: 287

execute local program from extern server? is this possible

Hi guys I'm looking to establish if it's possible to run a local program like whatever.exe from a webpage, that in this case its residing on an intranet Can this be done? i know that this could be a huge security risk, but... Or is it only possible to do from a local server? I know this can be done ...
by thallish
Tue Sep 13, 2005 4:22 pm
Forum: PHP - Code
Topic: loading an external site without the use of frames?
Replies: 5
Views: 222

loading an external site without the use of frames?

hi guys

Can loading an external site be done with php? I want to avoid using frames.
Did some fooling around with just including google to my site, but it kind of miss
some objects :wink:

SO can it be done and if true then how?
by thallish
Tue Jun 14, 2005 2:57 am
Forum: PHP - Code
Topic: [solved] can PHP receive variable outsite form
Replies: 2
Views: 256

first of all you need to put your textarea inside your form else you can't get that data furthermore be sure that you have set your variable $code somewhere above your hidden textfield and this line print(&quote;<value=\&quote;$code\&quote;>&quote;); should be print(&am...
by thallish
Sun Jun 12, 2005 5:05 am
Forum: Databases
Topic: [SOLVED]optimizing search query
Replies: 4
Views: 716

OK i got it quite optimized the query found a post on dev.mysql.com that stated that the use of OR in a query in the form SELECT * FROM a WHERE index1 = 'foo' OR index2 = 'bar'; will slow down the search even if indices are used. Instead the query should be of the form SELECT * FROM a WHERE index1 =...
by thallish
Sat Jun 11, 2005 4:07 pm
Forum: Databases
Topic: [SOLVED]optimizing search query
Replies: 4
Views: 716

[SOLVED]optimizing search query

Hi all I have this problem that my search query performs so slow!!! it takes around 11 sec to perform a search and i can't believe that it is the fastest EDIT: Ok i'm just gonna explain what i want to do, with this query. I have an employee with some experience and some education and some personal d...
by thallish
Sat Jun 11, 2005 1:28 pm
Forum: PHP - Code
Topic: [SOLVED]breaking up text
Replies: 3
Views: 198

OK i solved it already :wink:

here is what i did

Code: Select all

$site = $_SERVER['PHP_SELF'];

$array = explode('/', $site);

$array = array_reverse($array);

$site = $array[0];
Now does this look reasonable?

thallish
by thallish
Sat Jun 11, 2005 12:58 pm
Forum: PHP - Code
Topic: [SOLVED]breaking up text
Replies: 3
Views: 198

[SOLVED]breaking up text

hi all i want to get the name of the file that i'm currently working with. i have an idea to get $_SERVER['PHP_SELF'] and then break up the text string to do that. If i get the string /kompetencesystem/default.php i need to get the default.php part from it. Now my question is: Is this the simplest w...
by thallish
Fri Jun 03, 2005 9:27 am
Forum: Databases
Topic: problem with searching fulltext
Replies: 1
Views: 248

problem with searching fulltext

hi everyone i'm currently trying to get some fulltext search to work as i've heard it is a lot quicker then ordinary search (SELECT * FROM table WHERE field LIKE '%searchstring%'). First of all is this true and in which cases does this statement return true (to many hours at the code :lol:) ok, now ...
by thallish
Thu May 12, 2005 2:30 pm
Forum: PHP - Code
Topic: repopulate...?
Replies: 6
Views: 351

hi i have a similar problem. Right, now i'm using this.form.submit() and what i'm trying to do is to populate a textarea a text field and a selection box, and this part works. Now my situation is that the guy i'm doing this for want to have whatever selected in the first selection box still to be hi...
by thallish
Mon Apr 25, 2005 5:54 am
Forum: PHP - Code
Topic: Checking to see if Field was Submitted empty
Replies: 14
Views: 642

With due respect, thallish, isset() function tells if a variable has been defined. as the holy scripture said: bool isset ( mixed var ї, mixed var ї, ...]]) - Returns TRUE if var exists; FALSE otherwise. but it will also return true in submitted empty form. read the bible. maybe...