Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~40.4K People Reached
Favorite Tags

36 Posted Topics

Member Avatar for Albert Pinto

Hi People; I've got issue in uploading image in cake php. Thing is that, I have a form, where i have input type="file". I need to upload a file in a directory and save its path in database. In "view" its like... <tr><td> <?php echo $this->Form->input('field', array( 'type' => 'file', …

Member Avatar for mandeep_2
0
3K
Member Avatar for OtepTheThird

Well... someone might stumble upon this some day... I too had this err few weeks back... I did all the stuff suggested on different forums... Finally uninstalled and reinstalled... The solution is actually very simple. I suggest you to uninstall XAMPP completeley (since you might have done some changes here …

Member Avatar for OtepTheThird
0
4K
Member Avatar for newbi11

Why not make use of ABSOLUTE positioning... i mean create 3 divs... of width and height equvivalent to the images width and height... and position them accordingly... no need of "img" tag... use background property for the divs.... For positionng use appropriate attributes... I guess for Img 1.... left:0; Image …

Member Avatar for alisajjad160
0
5K
Member Avatar for mattyd

Definitely an issue with proper closing of tags... Once I got this error working in php... In my case the issue was... <? ?> I was wondering.. ya the tags are closed... then realized... The shorthand tags were disabled in my php.ini file.... Once I changed it to <?php ?> …

Member Avatar for Albert Pinto
0
346
Member Avatar for janicemurby

Magic Wand Tool in photoshop will do the needful...... There are lot of video tutorials on youtube... Or if its not precise... photoshop has...Pen Tool... Save as .png image Regards

Member Avatar for diafol
0
188
Member Avatar for Simon_4

Instead of div why not use span tag I mean make a parent div with text-align center and put the 3 images inside it... As in like.... <div class="image_box"> <span><img src="image1.jpg"></span> <span><img src="image2.jpg"></span> <span><img src="image3.jpg"></span> </div> In CSS .image_box { text-align: center; } I hope it works... Regards

Member Avatar for Albert Pinto
0
143
Member Avatar for sathyakumar23

Create absolute positioned divs... and position them wherever you want over the infographic.... simple... In jquery write click event... I mean on click of that particular div (particular section of the infographic).... window.location="any_page.php" For proper positioning of absolute divs, make sure the parent div, I mean the one which contains …

Member Avatar for webhawk
0
113
Member Avatar for davy_yg

z-index only works on positioned elements (position:absolute, position:relative, or position:fixed). and pls make sure... z-index of that text box has higher value... than the image...

Member Avatar for Albert Pinto
0
151
Member Avatar for Albert Pinto

Hi People, I need to find invalid emails from the database. and display corresponding columns of those emails (name, phone, address etc) with proper pagination. I have a database with a table named csv_data_table. This table has fields NAME, EMAIL, PHONE, ADDRESS, DESIGNATION. I have to find invalid emails from …

Member Avatar for Albert Pinto
0
189
Member Avatar for Albert Pinto

Hi People.... I have a table named 'csv_data_table' and it has a varchar(255) column named 'EMAIL' This EMAIL column has multiple records with white spaces (at front and end) I tried this way to eliminate the white space UPDATE csv_data_table SET EMAIL = trim(EMAIL); But it won't work.... the email …

Member Avatar for Albert Pinto
0
266
Member Avatar for Albert Pinto

Hi, just wanted to know how to delete a record from datagrid, i tried the following code but it gave me an error in deleting records, I am using Mysql Database. Following is the code: [code] Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click 'recorddelete() Dim …

Member Avatar for KimberGariando
0
2K
Member Avatar for Albert Pinto

Hi People, I've got a small query regarding checkboxes. I have a form, where there are input box, textarea, radio buttons and checkboxes. After form submit, Insert query gets fired and data gets inserted properly. I'm storing checkbox value as a string, I mean, the checkbox array... I'm converting it …

Member Avatar for Albert Pinto
0
2K
Member Avatar for Albert Pinto

Hi people, Need some help in keeping query string values intact while moving across pages via pagination. Thing is that I'm fetching records from mysql table and displaying it in tabular format. Its like... I have a page "records.php" In phpmyadmin there is "userdetails" table with columns as...... first_name, last_name, …

Member Avatar for diafol
0
1K
Member Avatar for Albert Pinto

Hi People. Want some help regarding overlay div. I'm trying to develop a overly form. Just wanna know how to make div container(the overlay form) occupy or wrap entire browser area.... What I'm trying to do is...... I have a parent container, where all other containers and images reside. In …

Member Avatar for Albert Pinto
0
282
Member Avatar for louie540

Well.... seems similar like Oswald font....but its not oswald.... just ask the person who sent you the mail.... the website name from where he got this.... If they are using same font in some other pages too... u can find it in firebug ..... the font family.... Hope that helps...

Member Avatar for Albert Pinto
0
143
Member Avatar for ggeoff

If you wanna fix the footer at bottom.. Why not give it a fixed height... position: fixed and bottom:0; and then ...width: 100% to make it full fledged... but then if you give some padding.. horizontal scroll bars might get added....

Member Avatar for ggeoff
0
467
Member Avatar for Albert Pinto

Hi People, Got some jquery issue. I'm validating a Contact form. All fields are working fine except <textarea> I mean I wanna make all fields mandatory including textarea... --------------------------------------------------------- HTML CODE --------------------------------------------------------- <div class="formbox"> <form id="contact_form" action="#" method="post"> <span class="error" id="name_error">Please Enter Name !</span> <span class="error" id="email_error">Please Enter Email address …

Member Avatar for pixelsoul
0
11K
Member Avatar for blong206b_1

Simple my friend... Just put your table or whatever content.... inside a container Say like... parentcontainer ----------------------------------- HTML code ----------------------------------- <div id="parentcontainer"> Your table content here.... <table width="600" border="0"> <tr> <td colspan="2" style="background-color:#FFA500;"> <h1>Page Title</h1> </td> </tr> blah.... blah.... blah... </table> </div> and then in CSS file.... #parentcontainer{width: 1024px;margin: 0 …

Member Avatar for Albert Pinto
0
149
Member Avatar for Albert Pinto

Hi People... I'm very new to this Symfony thing... I'm working on a CRM... Issue is with the url part... I mean....after looging in, no matter which page I go through... It always displays as index.php at the end part of the url.... or sometimes some annoying url... http://127.0.0.1/myproject/symfony/web/index.php/auth/login I …

Member Avatar for LastMitch
0
103
Member Avatar for Albert Pinto

Hi People, got a small issue. I have 3 select boxes, I mean dropdown list country dropdown list... then a state and then a town... I'm fetching data from database and loading it in the first dropdown list (country) On change of country, states get loaded and on change of …

Member Avatar for Albert Pinto
0
1K
Member Avatar for Albert Pinto

Hi People, Got a small issue...... And don't know exactly where the problem is. I'm trying to implement Online Manga Viewer in my site. I've tried this as a stand alone page and it works fine. What this viewer does is... There is a select box... Where I've got to …

Member Avatar for magicmarkuk
0
177
Member Avatar for Albert Pinto

Hi People, Got an issue with css in php. Actually I'm trying to create and send a html email. My front-end form consists of To(textbox where recipients email address will be entered) and then I've embedded ckeditor in place of Textarea where I will be typing the message... Now this …

Member Avatar for jstfsklh211
0
3K
Member Avatar for Albert Pinto

Hi people, need some help... I have a dropdown list with some options in it.. I have 2 buttons Select all and Reset. What I want is, on click of Select All button, all the options inside it should get selected. and Reset button should clear the entire form. This …

0
115
Member Avatar for Albert Pinto

Hi People, Got some issue with radio buttons... I want to pass the form details WITHOUT PAGE REFRESH.... I have a textbox and 2 radio buttons with values Subscribe and Unsubscribe and a submit button. The user has to enter his E-mail id in the given textbox and select either …

Member Avatar for kalpanakovuru
0
2K
Member Avatar for Albert Pinto

Hi people, got some weird issue. My update query isn't working once I upload my files on server, It works perfectly on localhost and delivers what its intended to do. I echoed my update query On local host it gave me: UPDATE displayusertrip SET displaytripmnth='JAN', displaytripyr='2012', displaytriptrps=' Goa Trip, Bengal …

Member Avatar for sasankasekhar
0
1K
Member Avatar for Albert Pinto

Hi People, need some help Actually I wanna block an IP address from a certain country... I don't want them to access my home page which is index.php.... so I've included a file "country-redirect.php" this file is placed at beginning of my index.php.... index.php code is like <?php require('country-redirect.php'); ?> …

Member Avatar for Albert Pinto
0
556
Member Avatar for eltonpiko

Even I posted a similar query few days back........ And I'm still stuck with it... Some people advised me to store the checked value in only one column.... I mean as a string using the implode function.... and while retreiving data use SELECT to recover it and then explode that …

Member Avatar for diafol
0
1K
Member Avatar for Albert Pinto

Hi People. Got a small issue, although its big for me........ I'm using phpmyadmin.... I have 2 tables.... My First table is 'user' which has 4 columns ( eventid, Name, Email, Address ) ( eventid is the primary key) My Second table is 'trips' and it has 6 colums ( …

Member Avatar for pritaeas
0
118
Member Avatar for Albert Pinto

Hi People, Got a php related issue.. I have a form Which has some textboxes, few checkoxes and a Textarea. Say for example, Name: Email Address: And then the checkbox values....... Hobbies (Reading, Trekking, Gardening, Outdoor Sports, Birding) Once I click the submit button, All my data gets inserted in …

Member Avatar for fobos
0
146
Member Avatar for Albert Pinto

Hi People......... I've got some weird issue.... I have 2 sliders... one is a timeline...with previous and next links... when I click next link the new contents gets displayed and the older content gets slided to left... Another slider is having a set of images which just slide... when I …

Member Avatar for Albert Pinto
0
112
Member Avatar for Albert Pinto

Hi People.... I've got some issues with the front-end. Everything works fine in chrome and firefox, issue is with IE8 What I wanted was help in conditional statements for IE..... Is there any possible way to display 2 different contents in a page for IE and other browsers. I mean …

Member Avatar for Albert Pinto
0
92
Member Avatar for Albert Pinto

Hi People. I'm a newbie to javascript. I have a small issue. I have a table where I have 5 columns.. I mean 5 <td> In each <td> there are 7 links. When I click a link, a container is popped up... Its hidden at first, Now inside the container …

Member Avatar for Albert Pinto
0
287
Member Avatar for Albert Pinto

Hi All.... Actually I wanted to send mail through mail function in php... The mail is sent successfully and I'm receiving it in the inbox... Problem is I want the mail content in HTML format not plain text. I've tried this code, but it doesn't seem to work... [CODE] <?php …

Member Avatar for Albert Pinto
0
196
Member Avatar for Gaurav Bindal
Member Avatar for Albert Pinto

[B]Hi Sir, Whenever I start my PC, SMPS fan makes lot of noise.......But after 5 minutes there is no such sound and everything functions perfectly.........Is there some problem in the SMPS, I mean, is it needed to be replaced........? Is it a major problem....? Please Help.........Thanks..... [/B]

Member Avatar for Maplestory
0
115
Member Avatar for Albert Pinto

Hi my dvd rom gets ejected when i boot the PC. When i press the dvd drive button, it goes inside, but then again it gets ejected. Even if i insert a dvd or cd and load the drive, it will insert and will eject again. Please Help........ Thanx

Member Avatar for MindSter
0
37

The End.