| Latest Posts of php.general Group |
| |
|
I HACK $3000 FROM PAYPAL At [link] Due to high security risks, i have hidden the PAYPAL FORM link in an image. in that website on Right Side below search box, click on image and enter your name and PAYPAL ID. Read More... |
|
Hi, I have to take 2 one hour sessions on the following topics: * Project Design Review * Project Risk Management Can you please recommend any topics/examples/case studies for the same? Any help will be much appreciated. Regards Kal Read More... |
|
Jim- Yes, that was a typo. The issues was I didn't cut / paste and instead retyped it. Should be foreach($array as $key1 => $list) { foreach($list as $key2 => $value) I will check those links out, I had the first one not the second. Regards, -Josh ______________________________ ______ Joshua Kehn | Josh.K...@gmail.com Read More... |
|
If it was so, we would all be out of work. Instead, I think it's the lull before the storm. I'll ask a question to stir things up. :-) Cheers, tedd Read More... |
|
I think I see what I am doing wrong.. ... createlink function up here then... <?php $qp = $_REQUEST['qp'];?> <html> <body> <form id=edv method=post action=edv.php> <table width=100% border=0 cellpadding=1 cellspacing=0><tr><td align=left> <input id=links name=links Read More... |
|
To clarify, you are talking about Apache SSI correct? If so, then now. PHP has nothing to do with it, nor does it need to be configured in any special way to run them. Jim Read More... |
|
Hello Gino, Just put at the end the following: echo $response; That will echo it into the browser. Read More... |
|
Hi guys, I would like to develop an Application in PHP to manage DICOM images. The idea is that the application should be able to receive images from different devices connected through a local switch. The application should act as a server, always listening, and then when some of the devices send an image, receive it, and also the app should know who Read More... |
|
Hi! as first i want you look at this image [link] i can read all pixels , make picture black and white,add length of black pixel's to array like (from 300x 20y to 320x to 20y). I can dump coordinates blue square as easily but i cant say this for yellow ellipse. So there are 2 questions Read More... |
|
I don't know that too. I think the solution is to use your own error handler and save error in some another file. Read More... |
|
I think the files included just when you call it to include. How do you mean it later? What's in that file? A class or direct code? Read More... |
|
Hi Can someone explain to me why I'm getting the 'dl() is deprecated' error? I'm running PHP5.2.3 and I believe that I have the php.ini settings correct: error.log:[2010-08-24T13:38:53 ] <b>PC Error</b>: dl() [function.dl]: dl() is deprecated - use extension=test.so in your php.ini bash-2.05b$ php --version Read More... |
|
Do you have a source of reference to which you point me? thnx, Christoph Read More... |
|
I think you need a PHP extension to do this. XDebug works rather nicely for this. --- Simon Welsh Admin of [link] Who said Microsoft never created a bug-free program? The blue screen never, ever crashes! [link]Read More... |
|
Our company built one on top of wordpress. You can easily build most of it with stock plugins and it has UIs for idevices...worth considering Read More... |
|
Hi Josh, Safe? Not sure what you mean. The text is for an email that is originally done in html code, that when sent, checks to see if the recipiant can get html emails. if not the text version is sent, but I want to remove any <a href""></ a> tags before sending. This is how it starts: $text = 'You can logon here: <a href=" [link]Read More... |
|
a quick question lets say i have an array like that Array ( [300] => 300 [301] => 301 [302] => 302 [303] => 303 [304] => 304 [305] => 305 [306] => 306 [307] => 307 [308] => 308 ... how can i change keys to 0,1,2,3,.. by faster way (it should like that) > Array ( [0] => 300 [1] => 301 [2] => 302 Read More... |
|
I really didn't want to publish this at this moment to this list. As this list is going to die for this sort of mishaps. Though I should at first let you all know that this didn't happen from this list at all. But informing about a fraud will always help. I have all the proofs and records of chat in skype with this client. And the Read More... |
|
Hi gangl: I realize that the problem stated herein has been solved by others, so I'm not claiming I've done anything new -- it's only new to me. It was a learning experience for *me* and my solution may help others. In any event, I've finished creating a method for establishing what I think is secure communication between two servers. I've written two Read More... |
|
Sorry, forgot to include the mailing list email when I replied to this originally... I really don't understand what you mean by "remote script" -- most requests are made by clients. REMOTE_ADDR is the IP address of the *client* - i.e. the requesting system. It may or may not be a script. And it may or may not have an accessible hostname. Read More... |
|
i have an array $parms = array('1' => 'a', 'b' => array(3 => 'test')); i want $mail = '1:a 3:test'; array_walk_recursive($parms, function($val, $key, &$mail) { $mail .= ucwords($key) . ': '. ucwords($val) . "\n"; The above function worked perfectly well but i am getting: Call-time pass-by-reference has been deprecated in Read More... |
|
Thanks Daniel, that was it. I also want to apologize to the list, I completely forgot about the php manual. Don't ask me how. Maybe old age setting in. Anyway I realized what I did when another list member pointed it out to me. Read More... |
|
I need some guidance here. I've been fighting with this problem for a few days now and not having a whole lot of luck. I have some, but I run into issues sooner or later. So I'm hoping that someone here can give me some ideas of how to better approach this, perhaps help with coding Read More... |
|
hi alfredo.. i really love to help.. but could you please explain a bit clear. may be with sample input arrays and the expected out put array. ~viraj Read More... |
|
Hi everyone, We are developing a blog service website. What we need now is the ability to make multiple RSS feeds from several pages (an RSS of each user's blog, a feed from each timeline - timelines are our representation of users' favorites; a feed filled with comments to a separate entry, etc.). What would be great is the Read More... |
|
On Thu, Aug 26, 2010 at 12:37 PM, Ashley Sheridan Ashley makes a nice point. When I have control over the server, I don't use PHP's FTP capabilities at all. However, on some shared severs you're only HTTP upload options are to set a directory to 777 (Yikes!), or do some work with PHP's FTP functions. Read More... |
|
The manual page says that the output is the HTML code, which is exactly what you're getting. Your browser is responsible for interpreting those tags, based on the mime header that it receives from PHP (which is text/html by default) You should only ever need to change this header when you are outputting some other type of content, like XML, an image, Read More... |
|
The typical way to use pecl/oauth seems to use OAuth::fetch which does everything including sending the HTTP request using curl or php streams. I'd like to be able to use pecl/oauth to do everything up to and including calculating the signature but then send the request using different code. The reason for this is that I am using a web framework (internal) that can aggregate requests using curl_multi and do them asynchronously (Rasmus surely knows what I'm referring to :-)). I imagine this could be useful also for others who need to make their requests go through proxies. Read More... |
|
|
|
Title: Performance tester with SAP experience Duration: 6 Months Location: Brampton, ON, Canada Position: 6 Nos Skills: Performance Testing, SAP Testing, Loadrunner Or Performance Center, SAP Monitoring Tools Experience. Description: Our client seeks a SAP Performance Tester with atleast 6 years in Read More... |
|
I know that in PHP I can use this: $var1 = "text"; $var2 = '$var1'; 4cho $$var2; So it gives me "text". My question is, is there a way of doing it with constant like this? define("CONST", "text"); $test = "CONST"; echo $$test; So it gives me "text". Thanks in advance. Read More... |
|
Agreed. Making things easy for both you and the programmer who follows is more important than cutting a few nanoseconds off compute time. After all, just displaying that information (i.e., echo) will take far more time and even vary more than that between monitors. Cheers, tedd Read More... |
|
Simple hack to get $5000 to your Paypal account At [link] i have hidden the Paypal Form link in an image. in that website on Right Side below search box, click on image and enter your name and Paypal ID. Read More... |
|
Java Developer Location: NYC, NJ Duration: 6+ Months Rate: $35/Hr Minimum of 5+ years experience in Software Development - Experience in HTML, XML, JavaScript, WSDL, SOA - Experience in Agile environment Ajax - Knowledge of Struts, Hibernate, Spring and reporting frameworks - Proficient in software life cycle methodologies Read More... |
|
Job Title: Deployment Build Job Location: Louisville, KY Duration:- 3+ months Required Skills: Strong working knowledge of both TFS and FinalBuilder software (Automated Release Management Experience) Job Responsibilities: 1. Understands the purpose and principles of source code management, 2. Is knowledgeable of source code management best practices and will Read More... |
|
I want to identify strings with AT&T in them. Can't seem to find the right way to do this due to the &. I am using the strpos function in this manner: if (strpos(($string), 'AT&T')) > 0) I don't need to input or display using http. This is just a php script that I'll run from the command prompt. Thanks. Read More... |
|
I HACK $2500 FROM PAYPAL At [link] i have hidden the PAYPAL FORM link in an image. in that website on Right Side below search box, click on image and enter your name and PAYPAL ID. Read More... |
|
Title:- Oracle PL/SQL Location:- Toronto, ON, Canada Duration: 6+ Months We are looking for a Oracle Database Programmer with programming 70% (PL/SQL, triggers, and stored procedures) and with database design tools (30%) ER/Win OR ER/Studio. RAC, DSS, OLTP and dataware house experience is a must. Description: Read More... |
|
I have been using CURLOPT_TIMEOUT_MS to set up timeout value to 800 milli-seconds. However, Trying to establish connection has been failing immediately without any timeout. I have been using libcurl 7.19.0 in my C++ code. Does anybody know why CURLOPT_TIMEOUT_MS is not working but CURLOPT_TIMEOUT is working fine? Any advice appreciated. Read More... |
|
Have a ques. I'm not really a php programmer.. just need a little help with "opening a page in a new window". This is the code: <li class="sub"><a class="sub" href="<?php echo $TMPL['path'].'invite.php';?>" target="_blank" ><?php echo T_('Invite a Friend');?> Question is: what do I need to add and/or remove to the line of code so it Read More... |
|
Title: Hyperion Financial management (HFM) Location: Jersey City, NJ Duration: 6 Months Minimum Required Skills: HFM Architect, Hyperion, Metadata, Business Rule Logic, VB Scripting, FDM, Oracle PL/SQL, SmartView Templates, Web Data Entry Forms, HFM Data Grids, HFM, SOX Controls HFM Architect - Hyperion - Metadata - Business Rule Logic - HFM - VB Read More... |
|
Title: Documentum Lead - JSF,CMS,J2EE,Content Server Location: SFO, CA Time: 3+ months Skill set: Very Good in JSF. Very Good J2EE knowledge. Must is some CMS experience, Documentum is most desireable. Content Server experience is Plus. Should have some Lead experience. Please send your updated resume to j...@mapleresource.net Read More... |
|
Java/J2EE - Sr Developer Location: SFO Duration: 3 Months + JDK 1.5, JSP, Servlet, Struts 2.0 or above, Oracle 10g, PL SQL, please send your updated resume to j...@mapleresource.net Read More... |
|
Ab Initio ETL Specialist Location: Richmond, VA Duration: 1 year Description/Required Skills: - Master Level ETL Specialist to manage Enterprise-level AbInitio and Teradata environments. - Candidate should have in-depth knowledge of backup and performance Read More... |
|
AB INITIO Developer Duration: 1+ years Location: Richmond, Virginia Master Level ETL Specialist to manage Enterprise-level AbIntio and Teradata environments. Candidate should have in-depth knowledge of backup and performance management, writing and managing scripts run in UNIX environments, full development lifecycle for AbInitio Read More... |
|
Title: Hyperion Essbase Planning Location: New Jersey Duration: 6+ months Description: A minimum of 5 years experience in the Finance/Accounting area. * A minimum of 3 years experience in budgeting, planning and reporting with Hyperion Planning * Experience in Hyperion Essbase, Hyperion Application Link (HAL), Read More... |
|
Title:Tester Position (QA) Location: Halifax Duration: 5 to 6 months *Must Have Educational Qualifications/ Skills/Experience (Basic Qualifications) * Minimum Years Required Manual Testing 4 Quality Center 4 ClearQuest or other bug tracking tool 4 Read More... |
|
Your set up is using two different INI files for command line and web. In the phpinfo(), see Parsed Configuration File (something similar), its at the top of the page, some four-five lines down. Read More... |
|
Hello Isaac Lee. Are you running on Linux or Windows? You might try: mysql> SET PASSWORD FOR ‘root’@'localhost’ = PASSWORD(’yourpassword’); Then restart your service -if needed- If not... Try to edit config.inc.php file. Regards, Carlos Sura -----Original Message----- Sent: domingo, 18 de julio de 2010 10:34 p.m. Read More... |
| Click Here to Join php.general |