Hello,
I reformated my system, and now I cannot echo ""; but phpmyadmin loads just fine, without errors. I have the php.ini in the windows directory.
What is wrong?
Thanks
Jean
Hello,
I have the URL http://localhost/mydirector/, I want to echo mydirectory and not have a 404 error. mydirectory does not exist as a directory, but is taken as username. I am using Windows/apache/MySQL,PHP
Thanks
Jean
Hello,
I have the local file path as c:\new folder\pdf\today\k.pdf I want to replace the c:\ with file:\\c|
I tried str_replace('','',) but I get error due to the slash, no stripslash will not work.
Thanks
Jean
Hello,
I want to search a text_word from raw text using jQuery.
$("#s:regex('text_word')").each(function() {
$(this).appendTo('#s1');
});
raw text here
Thanks
Jean
Hi there,
I need develop an application (Delphi) that never receive the focus, I use the DLL to display the video on second monitor (I found in Torrys Delphi - Dr.SAGURA Media Player v.1.0) that receive the focus every time play the video, how avoid this ?
I try :
procedure TForm.WMActivate(var Msg: TWMActivate);
begin
WA_ACTIVE :begin
Msg.Result := 0;// cancel focus
end;
end;
Unsuccessful !
Thanks
Jean Alysson
Hello,
I installed Ubunut and got the LAMP stack installed too. Now the problem is I have to be connected to the internet for the local apache webserver to work, else it does not. I changed the IP address on the dnshost, in the apache2.conf file, got the servername in the httpd.conf, which was empty.
Any ideas guys.
Thanks
Jean
Hello,
This may seem stupid to ask, but I have done on many css coding
#div_iv a:hover
but for darn reason, it does not seem to work now, Googled with results such as
a.hover #div_iv
#div_iv:hover
What exactly is wrong.
Thanks
Jean
Hello,
I want to be able to read any random RSS/ATOM XML file. That would mean I would not not know the tags, start the loop and the fields. How do I go about doing it in PHP.
Thanks
Jean
Hello,
Here is the .htaccess entry. what I intended to do is to transfer anyone typing as www.yahoo.com/Hello to www.yahoo.com/index.php?h=hello.
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule /index.php?u=$1
Now for some reason it shows me a 404 error when I type in yahoo.com too, I wonder what is wrong.
Thanks
Jean
Hello,
I want to center a div right in the middle of the page, I tried top:30%, but when the window is resized off the alignment.
<div id=cent></div>
Thanks
Jean
Hello,
I have this CSS style that does a rounded corners for div border, but for some reason IE does not like this code.
#selector{
background-color:#DBDBDB;
margin-top:-23px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
background-color:rgba(255,255,255,0.5);
}
How can do rounded div border on IE.
Thanks
Jean
Hello,
I want to put images of the 1024x768 as backgrounds and load quickly using css. I could use
background(url....)
in the CSS, but will that solve the issue, of downloading images quickl?
Thanks
Jean
Hello,
I am trying to add an image from a local directory to a php page on my localhost. It adds fine, but does not display the image.
What exactly am I doing wrong here?
Thanks
Jean
Hello,
This is going to be rather silly of me asking, but how do I keep the background image fixed during a page scroll. I have this css code, and the image is a background of the body and not **
body{
background-position:center;
background-image:url(../images/images5.jpg);
}
Thanks
Jean
Hello,
For each click I want to increase the font size.
$('#fontplus').each(function('click') {
var fs = $('#bod').css('font-size');
$('#bod').css('font-size',fs+1);
});
<div id="fontplus">+</div>
Thanks
Jean
Hello,
Consider the URL www.something.com/HereWeGo. When someone enters the url, the site shows a 404 error since the directory does not exists. I can parse the URL to get the query and HereWeGo, but cannot stop it from going to a 404 error.
How can I achieve it by PHP, if it is possible to avoid .htaccess now
Thanks
Jean
Hello,
<div id=i1><span id=e1>Item 1</span></div>
<div id=i2><span id=e2>Item 2</span></div>
When I click on Item 1 it should be deleted and moved to i2 and when I click on Item 1 again it must go back to i1
Yes, I tried append(), it goes to i2, but on clicking again it does not move back to i1
How do I get to do it.
Thanks
Jean
Hello,
I want to pass a $_GET[''] to a php file, when a button is clicked it must display data from the db.
It displays the data without the query.
The process.php contains SQL statement to query the db and display values.
Thanks
Jean
Hello,
I want to center a div, but the general way is
#selector{position:relative;margin:0px auto;}
What exactly is wrong below
#crp{top:40%; position:absolute; margin:auto;}
The Div below is not nested but a standalone. The #crp is going to the extreme right.
<div id="crp">...something goes here....</div>
Thanks
Jean
Hello,
I cannot $_post['value_to_be_posted'] value into a <form><input type="hidden" value="<? echo $_post['value_to_be_posted'] ?>"></form> in chrome but works in IE and ff.
Any ideas
Thanks
Jean
Hello,
I wonder why does this style not work in IE and FF, but in Chrome ONLY
#show{top:10%; position:relative; margin: 0px auto; width:100%;}
[Edit]
If I want to make the same work in IE and FF, what do I have to do
Thanks
Jean
Hello,
I can select the first item in the div using
$('.class:first')
Now since I will have random id values, and the class remains the same, I want to access the id of the fourth element, will it be something like this
$('.class:fourth')
using jQuery.
Thanks
Jean