Forum: PHP 1 Day Ago |
| Replies: 0 Views: 65 Hi,
nusoap doesn't support php 5.3 therefore, It is not usable for me.
Is there any SOAP+PHP example for me to be run on my localhost rather than pointing/accessing wsdl files of other websites?... |
Forum: PHP 1 Day Ago |
| Replies: 8 Views: 106 Ok guys thanks for your very helpful information. Now i go and read about AJAX.
Thanks |
Forum: PHP 1 Day Ago |
| Replies: 8 Views: 106 Hi,
index.php posts data to process.php
I want users to remain in index.php when they summit their form. I have seen this in some websites but don't know hot it done.
Can anyone help me?
... |
Forum: RSS, Web Services and SOAP 5 Days Ago |
| Replies: 1 Views: 197 Hi,
I need an php soap example that should run on my local wampserver. Also, wsdl file should be in my www/mytest folder with server and client php files. Not outsourced.
I tried a lot from web... |
Forum: Visual Basic 4 / 5 / 6 7 Days Ago |
| Replies: 0 Views: 125 Hi,
How do i post data from windows form to a website.
Windows form is VB6 or VB.NET
Website is PHP site where incoming post data is processed.
Example: Command will send 'Hi' in a... |
Forum: PHP 7 Days Ago |
| Replies: 4 Views: 157 I mean I'll develop a software with VB6 or VB.NET to post data from windows form to PHP website where data will be capture into MySQL database.
I know we can do this with cURL sending data from... |
Forum: PHP 7 Days Ago |
| Replies: 4 Views: 157 Hi,
X user uses his/her windows/Linux based software to publish content (job, item to sale or rent etc) in my PHP website. Something like posting data from a computer based software to website OR... |
Forum: Search Engine Optimization 22 Days Ago |
| Replies: 12 Views: 792 Ignore this thread because I used the link of my website. that link has been removed by Daniweb guys and replaced with 'SNIP'. Therefore. You have no change of seeing my website now. How useful it... |
Forum: Search Engine Optimization 23 Days Ago |
| Replies: 12 Views: 792 Hi,
How can i improve SEO of SNIP
Thanks |
Forum: PHP 24 Days Ago |
| Replies: 7 Views: 324 Thanks to ShawnCplus. Solved.
<script type="text/javascript">
function submitForm(val) {
document.getElementById('submittedName').form.submit();
}
</script>
<form action="process.php"... |
Forum: PHP 26 Days Ago |
| Replies: 7 Views: 324 Hi,
We can code this way to print something if Exit button is clicked.
<form action="process.php" method="POST">
<input type="hidden" name="hiddenName" value="Jolly" />
<input type="submit"... |
Forum: JavaScript / DHTML / AJAX 31 Days Ago |
| Replies: 3 Views: 297 Nice workdaround didn't work.
As there i lot of people use this service dom.allow_scripts_to_close_windows doesn't look helpful.
Any other ways?
Thanks |
Forum: JavaScript / DHTML / AJAX 31 Days Ago |
| Replies: 3 Views: 297 Hi,
This code doesn't work in Firefox? Is there any other way of closing window?
<A href="javascript: self.close ()">Close this Window</A>
Thanks |
Forum: PHP Sep 26th, 2009 |
| Replies: 3 Views: 354 Solved.
inc.header.php
<?php
session_start();
?>
index.php |
Forum: PHP Sep 25th, 2009 |
| Replies: 3 Views: 354 This is content of in.header.php
if(!isset($session_id) || empty($session_id)) {
session_start();
$_SESSION["Inputs"]=array();
}
This is index.php which also has form objects that POSTs... |
Forum: PHP Sep 18th, 2009 |
| Replies: 16 Views: 687 OK. Now i can see them all as ubuntu with this one.
ubuntu@ubuntu:~$ sudo chmod 777 /var/www/toy
Before i mark this as solved i just want to make sure that this command doesn't expose security... |
Forum: PHP Sep 17th, 2009 |
| Replies: 16 Views: 687 Hi digital,
sudo chown www-data /var/www/toy/ solved the problem. I can backup with php. However, i also want to be able to see the backup files stored in that folder. Now i cannot see because... |
Forum: PHP Sep 17th, 2009 |
| Replies: 16 Views: 687 Hi digital,
I have done the tests. I give you the result i got. It may be useful info for you to direct me what to do.
Thanks
<?php
$result = file_put_contents('/var/www/toy/test.txt',... |
Forum: PHP Sep 16th, 2009 |
| Replies: 16 Views: 687 I have this info in 'User Settings'
Name-------Login name--------Home directory
veledrom ubuntu /home/ubuntu (this is active-bold and black coloured)
root ... |
Forum: PHP Sep 15th, 2009 |
| Replies: 16 Views: 687 Hi digital,
I don't know how to check if PHP has R+W privilages !!!
No password for MySQL. I didn't set it.
Thanks |
Forum: PHP Sep 11th, 2009 |
| Replies: 16 Views: 687 Still doesn't work. Also no error for echo exec($createBackup);.
I changed the path to /usr/bin/mysqldump -u root -h localhost toy > /var/www/toy/toy-11-09-2009_10:03:41.sql but, still doesn't... |
Forum: PHP Sep 10th, 2009 |
| Replies: 16 Views: 687 Hi,
I am trying to backup one of my Mysql database with a PHP script.
<?php
$host="localhost";
$database="toy";
$username="root";
$password=""; |
Forum: PHP Sep 10th, 2009 |
| Replies: 1 Views: 315 Hi,
What is the difference between installing Wampserver and Tomcat Apache?
Wampserver installs : PHP, MySQL, Apache Server
Tomcat Apache: Does it only installs Apache Server? If yes i... |
Forum: Getting Started and Choosing a Distro Sep 10th, 2009 |
| Replies: 1 Views: 730 Hi,
I will be using Ubuntu first time for PHP and want to sure that i use a php editor with debugging feature because, i want to see the mistakes at same time. What do you preferr and how can i... |
Forum: Getting Started and Choosing a Distro Sep 4th, 2009 |
| Replies: 2 Views: 1,338 Hi,
What is the best WYSIWYG PHP, HTML, CSS etc. editor for Ubuntu?
Thanks |
Forum: PHP Sep 3rd, 2009 |
| Replies: 6 Views: 314 No it doesn't work. I realised that this problem starts as soon as after first HTML code. In this case error line is <?php
after <body> tag. |
Forum: Getting Started and Choosing a Distro Sep 3rd, 2009 |
| Replies: 9 Views: 870 Yes ryuslash. It is in /media/ directory as disk.
Thanks |
Forum: PHP Sep 2nd, 2009 |
| Replies: 6 Views: 314 Yes echo "no"; is the right one.
You can't echo anything to the browser until after headers are sent.
What shall i do in this case then? |
Forum: Getting Started and Choosing a Distro Sep 2nd, 2009 |
| Replies: 9 Views: 870 '31 GB Media' is exact name for my C: which is listed in Places.
sudo cp -r /31\ GB\ Media/Test/FolderWithFiles/ /var/www/ |
Forum: PHP Sep 2nd, 2009 |
| Replies: 6 Views: 314 Hi,
I use this code in Windows (wamp), it works fine. When i use it in Ubuntu it generates this error "Warning: Cannot modify header information - headers already sent by (output started at... |
Forum: Getting Started and Choosing a Distro Sep 2nd, 2009 |
| Replies: 9 Views: 870 I wanted to know what was wrong with the syntax. |
Forum: Getting Started and Choosing a Distro Sep 1st, 2009 |
| Replies: 9 Views: 870 Hi,
I have a place called "31 GB Media" which is C: drive in MyPlaces. I wanted to copy a folder from it to Ubuntu. I have typed this line in terminal but "No such file or directory" is returned. ... |
Forum: PHP Aug 29th, 2009 |
| Replies: 6 Views: 396 Hi,
I have never use CMS before and want to learn. For a beginner, do you think Joomla would be easy for me to learn or Drupal?
Thanks |
Forum: PHP Aug 27th, 2009 |
| Replies: 5 Views: 227 |
Forum: PHP Aug 27th, 2009 |
| Replies: 5 Views: 227 Sorry Pritaeas, they didn't work. It doesn't generate any errors though.
I use Wampserver 2.0 with Apache 2.2.1 and PHP 5.3.0
Any other ideas? |
Forum: PHP Aug 26th, 2009 |
| Replies: 5 Views: 227 Hi,
i wanted to remove .php and place / but, it doesnt work. I get "500 Internal Server Error" message.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond... |
Forum: PHP Aug 24th, 2009 |
| Replies: 0 Views: 173 Hi,
I have header("Cache-Control: private"); in page1.php to prevent page expiry problem.
Let's say, when user click on Submit button it will go to page2.php
Page1.php should expire if the... |
Forum: eCommerce Aug 6th, 2009 |
| Replies: 3 Views: 641 Hi guys,
I have questions and want to clarify these before creating an e-commerce website. Are statements below correct?
1. I need to buy SSL certificate to provide HTTPS pages in my website.... |
Forum: PHP Jul 31st, 2009 |
| Replies: 2 Views: 308 |
Forum: PHP Jul 30th, 2009 |
| Replies: 2 Views: 308 Hi,
I use header("Cache-Control: private"); to prevent page expiry problem. It is to make browser’s “Back” button work otherwise; page expires if user hits “Back” button to go back and see... |