In one field on all records I want to get rid of anything longer than 8 characters,
I tried: SELECT LEFT(`colName`, 8);
It didn't work of course... hehehe
Can someone enlighten me?
thanks,
Mav
I solved the issue by setting properties in Proj2 and calling to set those onload because I felt as Sorwen does, that DLL's should be a single complete entity, I guess my problem was more that I couldn't remember if the was the right way to do it...
Thanks so much guys!
Mav
I have the main application and I added 3 new projects to the solution,
I added them as DLL's so I can compile and update them separately, but my Proj2 DLL can't see variables or procedures in the Main App...
Any ideas what I'm missing ?
I think it's a scope issue but not quite sure how to fix...
ok I added prikey because they were getting out of order,
here is more info: I have a report that I would like to change the header via this table,
for example:
record 1 = Report Header
record 2 = Report Footer
etc...
But I need to create an expression that that can use the value of record 1...
Hey everyone,
anyone know a quick way to load myArray() with the content of a table ?
The table has no key or IDs, it just holds Label Captions
tia
+--------------------------+
| "Hacker by Heart" |
| Yahoo! : saenzcorp |
+--------------------------+
Sorry,
http://www.indexsoft.com/passmanagerpro/index.px
I have been on vacation...
hth
+--------------------------+
| "Hacker by Heart" |
| Yahoo! : saenzcorp |
+--------------------------+
Thanks for your help !
here is what I did, but if this does not workout,
I will have a closer look at your code and see if I can make it work...
I added,
$self = basename($_SERVER['PHP_SELF']);
to make it identify itself
and then added,
$file != "$self"
to the if statement
Seems to work...
I want to list files in a dir but NOT *.php files
or *.htm files
here is what I have so far;
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "$file\n";
}
}
}
closedir($handle);
?>...
this sounds interesting...
can you elaberate on
4. referenced further by a basehref tag
thanks
+--------------------------+
| "Hacker by Heart" |
| Yahoo! : saenzcorp |
+--------------------------+
Hey guys,
Is there any way to get a php files to reference images from it's own location rather them the location it's included from ?
for instance; my index file has an include to a file in a dir called pages and the included file has images that are in a dir called images that is in the dir...
Well I found some code to help me do this but now I can't seem to get it to work on two menus,
I have a table with three cells in a row
the middle is content and both sides have menus
I found cool code that makes them float when I scroll but when I put in the code for the second menu,
the...
Well I found some code to help me do this but now I can't seem to get it to work on two menus,
I have a table with three cells in a row
the middle is content and both sides have menus
I found cool code that makes them float when I scroll but when I put in the code for the second menu,
the...
Ok, I know this is a weir one, but... here goes
"I'm try to be a good webmaster and not use frames"
I have a include to my menu in one cell of a table on the left and my main cell for content on the right
when I get a page that loads in the main cell, if the page is very long the menu centers...
I didn't know includes were used in html
I thought they were just in php
thanks
I will repost in HTML
+--------------------------+
| "Hacker by Heart" |
| Yahoo! : saenzcorp |
+--------------------------+
Ok, I know this is a weir one, but... here goes
"I'm try to be a good webmaster and not use frames"
I have a include to my menu in one cell of a table on the left and my main cell for content on the right
when I get a page that loads in the main cell, if the page is very long the menu centers...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.