Hi! I'm looking for a script to keep track of players password and usernames. Simply, keep track of information that enters into a textbox. I've tried to make it work for about 1 week now, but i really can't find anything. I'm new to php but i know the bases of PHP.
I would appreciate if someone could help me with this!!
Search Result
Collapse
5 results in 0.0046 seconds.
Keywords
Members
Tags
-
Log username and password
-
db2 archive log shipping
Hi,
I have Db2 8.1.1.152 FixPack 17 on AIX using SAP with DB2. we wanted to have a DR site. we are backing our production using TSM. we just restored the filesystem and later the DB2 data on DR site. every thing seemed to work fine. now we want to have online DR, for this we are shipping archive logs from production to DR site. but if we say
db2 rollforward db <dbname> to end of logs and complete
then this DR DB2 starts... -
Running a process in background and making a GUI
I need to read a log file (real-time) and select only data that I need(filtering) and make a GUI to display the data.
I am getting stuck at the point of being able to process both the log file and the perl script simultaneously. For instance, if I invoke the process(which runs infinitely, since its real-time) in the perl script, the perl script is temporarily suspended. I want the process to run in the background and the perl script... -
custom logger allowing streams and logging to file or screen or both
Dear all,
I would like to create a custom logger which allows logging commands in stream-style, but at the same time the output goes to some file or to the screen (cout) or to both. The code below illustrates the functionality:
Code:#include <iostream> #include "logger.hpp" using std::endl; int main() { Log log; log.init("out.log"); log.setLogOutputToFile(true);
-
store procedure call
Hi:
I´m calling a store procedure inside another store procedure and I have two problems
create sp1(in variable int)
begin
call sp2(variable)
call sp3(variable)
call sp4(variable)
end
the first thing is :
If I call each sp alone it works fine but if I call the sp1 it does´t work and no error messages are reported.
The second...