Forum: HTML and CSS 2 Hours Ago |
| Replies: 0 Views: 21 Hi,
Which one is loaded faster? Shall I store an image in my hosting an display it or outsource it from different website and display it in my website?
<img src="in my image folder/image.jpg"... |
Forum: RSS, Web Services and SOAP 1 Day Ago |
| Replies: 0 Views: 96 Hi,
Can anyone help me converting this wsdl 1.1 file into 2.0.
Thanks
<?xml version ="1.0" encoding ="UTF-8" ?>
<definitions name="Catalog" |
Forum: PHP 2 Days Ago |
| Replies: 2 Views: 129 Thanks for usefull info.
I remember I had strange header, header, header errors in Ubuntu when I run a project. Same project didn't give any errors in WinXP on Wamp.
Seems to it is all about... |
Forum: PHP 3 Days Ago |
| Replies: 2 Views: 129 Hi,
I read this ob_start() but want a bit cleaner explanation.
why we use it, should we use it, what happens if we don't?
I have never used it and won't use it until I understand it is best... |
Forum: PHP 4 Days Ago |
| Replies: 4 Views: 135 Hi,
Code below returns this.
Array
(
[0] => 3
[id] => 3 |
Forum: PHP 15 Days Ago |
| Replies: 0 Views: 125 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 15 Days Ago |
| Replies: 20 Views: 413 Ok guys thanks for your very helpful information. Now i go and read about AJAX.
Thanks |
Forum: PHP 15 Days Ago |
| Replies: 20 Views: 413 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 19 Days Ago |
| Replies: 1 Views: 406 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 20 Days Ago |
| Replies: 0 Views: 175 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 21 Days Ago |
| Replies: 4 Views: 192 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 21 Days Ago |
| Replies: 4 Views: 192 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 Oct 16th, 2009 |
| Replies: 12 Views: 847 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 Oct 15th, 2009 |
| Replies: 12 Views: 847 Hi,
How can i improve SEO of SNIP
Thanks |
Forum: PHP Oct 14th, 2009 |
| Replies: 7 Views: 356 Thanks to ShawnCplus. Solved.
<script type="text/javascript">
function submitForm(val) {
document.getElementById('submittedName').form.submit();
}
</script>
<form action="process.php"... |
Forum: PHP Oct 12th, 2009 |
| Replies: 7 Views: 356 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 Oct 7th, 2009 |
| Replies: 3 Views: 343 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 Oct 7th, 2009 |
| Replies: 3 Views: 343 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: 364 Solved.
inc.header.php
<?php
session_start();
?>
index.php |
Forum: PHP Sep 25th, 2009 |
| Replies: 3 Views: 364 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: 710 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: 710 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: 710 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: 710 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: 710 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: 710 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: 710 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: 340 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: 865 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,557 Hi,
What is the best WYSIWYG PHP, HTML, CSS etc. editor for Ubuntu?
Thanks |
Forum: PHP Sep 3rd, 2009 |
| Replies: 6 Views: 348 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: 983 Yes ryuslash. It is in /media/ directory as disk.
Thanks |
Forum: PHP Sep 2nd, 2009 |
| Replies: 6 Views: 348 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: 983 '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: 348 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: 983 I wanted to know what was wrong with the syntax. |
Forum: Getting Started and Choosing a Distro Sep 1st, 2009 |
| Replies: 9 Views: 983 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: 417 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: 232 |
Forum: PHP Aug 27th, 2009 |
| Replies: 5 Views: 232 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? |