Tagged Questions
PHP is an open-source server-side scripting language widely used in web development. Use this tag for questions about PHP classes, methods, functions, syntax and use.
0
votes
0answers
2 views
How to save XLSM file with Macro, using openpyxl
I have .xlsm file with a Macro function. I'm loading it using openpyxl and write some data to the file and finally want to save as a different .xlsm file.
To save the file as XLSM file I have used ...
0
votes
0answers
15 views
Wampserver and PHP Add ons
I have WampServer2.2 with PHP 5.3.13 installed on my local machine. My hosting provider has PHP 5.4.4 installed on the web server.
I need to upgrade my local machine WampServer to use PHP 5.4.4. I ...
0
votes
0answers
8 views
FullCalendar - Rendering JSON source
I've seen many post about fullcalendar here but none did solve my problem. I'm trying to load events from an external php file (JSON feed). Events aren't rendered in the calendar.
So here is my ...
0
votes
0answers
6 views
composer cannot find package friendsofsymfony/user-bundle
I have a problem with composer.
when I use this command in cmd
php composer.phar require friendsofsymfony/user-bundle
I get this message
Please provide a version constraint for the ...
0
votes
0answers
8 views
Laravel 4: named routes in named groups
Is there a way to make something like this?
Route::group(array('as' => 'admin', 'prefix' => 'admin', 'before' => 'admin'), function()
{
Route::get('/', array('as' => 'home', 'uses' ...
1
vote
9answers
45 views
Pass current GET Variables with href
Let's say I am on www.example.com/?par1=test and I have a Link like: <a href="/subpage">Link text</a>.
How to pass the GET Variable to the subpage, without reading every Parameter e.G. ...
0
votes
0answers
10 views
Need to edit root crontab jobs from webinterface??
I want to edit the crontab of root from the web interface. I have Apache and PHP installed on my Ubuntu. If there is any permissions required please also mention that.
I want to edit the crontab of ...
1
vote
4answers
31 views
Scraping from a Javascript Array?
Here's an example page of what I'm trying to scrape...
[
[4056, 1, 'Saturday, Aug 18 2012', '15:00', 171],
[4057, 1, 'Saturday, Aug 18 2012', '15:00', 94],
[4058, 1, 'Saturday, Aug 18 2012', '15:00', ...
0
votes
0answers
18 views
How can i send the exact email?
Hello i try to send back the right email to Facebook but without any luck. Can someone help me?
I am using it for my facebook support system, but i work when i send directly over email, but not via. ...
0
votes
3answers
19 views
Vertical Menu using mysql wont display data
I am by no means an exoert I am just trying to get my head round php and mysql to create a blog for our animal rescue centre. I am trying to create a verticle menu using a 'title' and 'link' field ...
0
votes
1answer
7 views
timezone issue in amazon aws ec2 linux hosting
I have recently set up my hosting service in amazon aws, From the moment i have started , it keep gives me an error
It is not safe to rely on the system's timezone settings. You are *required* to use ...
0
votes
1answer
13 views
Populating a database table with multiple values/ records in CodeIgniter
I'm creating a bulk booking module. For that I need to look for available rooms, and assign rooms to that reservation. Each room will be added to reservation table individually via a loop. However ...
0
votes
1answer
16 views
How do I implement dropzone.js?
I've found javaScript plugin for uploading files. However, I'm not sure how to implement it.
I've done the basics, such as downloading dropzone.js and I have the basic markup:
<input ...
0
votes
0answers
10 views
php imap foward / redirect account get original address (delivered-to)
I'm trying to do automate stuff with PHP and IMAP.
I assign a key to every elements I have in my database (e.g. issue tickets) so people can send mails with attachments to ...
0
votes
4answers
17 views
php params not getting called
I have link as test.php?fullname=Fahim&[email protected]
In test.php I have below
$fullname = $_POST['fullname'];
$emailid = $_POST['emailid'];
echo "$fullname===$emailid===";
I always ...