Dear all,
I use odbc_connect() to connect to a MS SQL database. Of course with that function I have to provide the password as a parameter. Now our company policy says, I should not have the password in code anymore.
Can anybody help? I have a windows server 2012 R2 with IIS and I already have...
Hi jpadie,
I tried
error_reporting(E_ERROR ^ E_NOTICE ^ E_DEPRECATED ^ E_WARNING);
ini_set('display_errors', 0);
But the warning is still displayed.
Best regards,
Eva
Dear all,
I use PHP 5.3 on an IIS. I had to copy my code from another server (which had PHP 4) to this one and I don't want to change the code as I have not enough time for it. So I'd like to hide all warning as I turned on register_globals in php.ini.
PHP shows me the following warning:
PHP...
Dear all,
the problem is that path_info is not sent. I don't get it with $GLOBALS["PATH_INFO"] neither with $_SERVER["PATH_INFO"]
Do you knwo where I should activate the sending of path info?
Best regards
Eva
Dear all,
I use PHP 5.3.1 on an IIS Server.
I'd like to use $GLOABALS["PATH_INFO"] which still works in PHP 5 although it is deprecated. In the php-ini file it turned on the register_globals option. So from PHP's point of view it should work.
Nevertheless I get the error "Undefined index...
Hello!
I have a Stored Process which I display in the SAS portal. When I display two or more proc reports or graphics there is always a horizontal line displayed between two of them. When I view the created HTML code there is <hr size="3">.
How can I erase these horizontal lines?
Best regards
Eva
Hello!
With a vbar I habe subgroup for the respond axis. Unfortunately by default the subgroup is ordered alphabetically. Yet I#d like to order it my way. How can I do this?
My data is
date phase price
2008/12/01 b 12
2008/12/01 c 56
2008/12/01 a 33
2008/12/02 b 34...
Hello!
I have a report with ods destination pdf. Unfortunately it is too wide and so the page splits into two.
So I'd like to squeeze everything onto one page. Does anybody know how to do this?
Best regards
Eva
Hi!
I'd like to count how often a stored process has been accessed by the visitors on my application on the sas portal. Does anybody know how?
I thought of writing a line in a file anytime somebody accesses the stored process. But because I have many visitors this would be a concurrent access...
Hello!
I have a question on legends. I'd like to position my legend top right outside. Unfortunately it is positioned top center outside...
Here's my code:
goptions device=javaimg gunit=pt colors(red green yellow) ftext=arial xpixels=400 ypixels=400;
legend1 position=(top right outside)...
Hello Chris,
thanx a lot, it works. However I had to add some more quotes at the if in the data step:
if "&medium" ne all then medium_long = put("&medium",$fmedium.);
So the lesson ist, alsways use quotes when a macro variable should be recognized as character...
Yet I'm a little disturbed...
Hello Chris,
I do it just like that in a data _null_ step to display the variable in a HTML Heading:
DATA _NULL_;
FILE _WEBOUT &g_sWEBOUT_OPTIONS.;
if &medium ne all then medium_long = put(&medium,$fmedium.);
else medium_long = "all";
put "<h2>My Heading</h2>";
put "Medium: "...
Hello!
I have a macro variable to which I'd like to assign a format:
proc format;
value $fmedium 'P' = 'Paper'
'F' = 'Fax'
'E' = 'Email';
run;
The macro variable has for example the value P and should be displayed as Paper.
Can anybody help?
Best...
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.