|
I'm sorry but today we don't handle more PHP requests - come back later on the week...
But really - it's not a question. first of all it make no sense! Then you made no effort (or show none) about the PHP part.
Improve your non-question so we can help you out!
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
i have been asked to create MVC web api for chatting application the client will be an android device,can any one suggest me should i go for the socket programming? i am new to web api in C# can anyone provide the algorithm for creating chatting application API any kind of help will be appreciated
|
|
|
|
|
|
|
A byte array is passed to my WCF service application from an android device.
Now Problem is how to capture or access that byte array and saving it as an image to drive on my machine. ???

|
|
|
|
|
Do you know the structure of the data in the array?
Veni, vidi, abiit domum
|
|
|
|
|
Hi, myself Mahi bhat, i am new in web development knows HTML & li'l bit 5 also, CSS, PHP, my question is i want to do something like making my own HTML5 templates or any other thing in web designing but i have no idea where to start & how to start. Plz help me to get rid out of this.

|
|
|
|
|
Well Mahi . You can Start from so many ways like First plan what should be the theme of a Website . Then start collecting Pictures to put in that website . then either you can get a Free HTML Templates from so many sites or you can get your own . by Start developing your Index.html page either in Visual Sudio or in Dreamweaver . as you are new so i will recommend Dreamweaver for you .
Start Using to create a Partition , to Place your particular thing Direction as per you
for gap between 2 lines .
|
|
|
|
|
Thanks bro Navneet , but i need some elaborated expamle, not with respect to use dreamviewer coz i am using it...
but i need some concept how to start will u give me step wise example with a theme.
|
|
|
|
|
Well surely ,
For that do revert me on navneet@nkwebart.net so that can get connected via email for further explanation regarding Coding as well as Development
Regards
Navneet k son
http://nkwebart.in
|
|
|
|
|
You could clarify things here(in discussion forum) instead of private mail. Because if you share the solution here, it'll help many others in future when they search similar things using search engines.
Besides, don't give him fish, just teach him "how to fish".
And don't post your email id in public discussion forum else spammers could mess with that easily.
thatrajaCode converters | Education Needed
No thanks, I am all stocked up. - Luc Pattyn
When you're wrestling a gorilla, you don't stop when you're tired, you stop when the gorilla is - Henry Minute
|
|
|
|
|
Go with Bootstrap[^]
thatrajaCode converters | Education Needed
No thanks, I am all stocked up. - Luc Pattyn
When you're wrestling a gorilla, you don't stop when you're tired, you stop when the gorilla is - Henry Minute
|
|
|
|
|
Thanks Thatraja , i appreciate ur rply but i don't think that bootstrap is useful for me at fresher level...
|
|
|
|
|
I often do a quick jump into a topic at W3C Schools^
Since they also usually include a reference page, it works as a combination tutorial/reference.
References are not always 100% complete, but once you are refreshed, you can use proper web searches to answer more difficult questions.
Note the menu bar for links to javaScript, php, CSS, etc.
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein | "As far as we know, our computer has never had an undetected error." - Weisert | "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010 |
|
|
|
|
|
Hi Everyone,
I am new to web development and I have simple question regarding Template 1.4.1.
I have 7 regions as shown below. My default controller renders those regions in template and it was good (See index method below). However, I would like to see the same layout, but with different content. Exactly the same except for content region.
I am wondering if there's a way I can achieve what I want without writing again the same command in index method. A one liner code probably or two. Can you show me how?
I tried the override in write_view and I can't make it work or I misunderstood the use of it. See add function below.
[code]
$template['default']['regions'] = array(
'headerstyles',
'header',
'banner',
'rightfilter',
'content',
'scripts',
'footer',
);
[/code]
Index method
[code]
public function index()
{
$this->template->write_view('headerstyles', 'headerStyles');
$this->template->write_view('header', 'header');
$this->template->write_view('scripts', 'scripts');
$this->template->render();
}
[/code]
Add function. addItem is existing and elements in addItem is rendered but without the other regions.
[code]
public function add()
{
$this->template->write_view('content','addItem','',true);
$this->template->render();
}
[/code]
Thank you very much!
|
|
|
|
|
I'm losing my mind here, my background is largely writing Windows Services/Console Applications etc, but recently I have got into Web development, and am currently working on a project using Twitter Bootstrap.
I'm trying to make the Navbar bigger (height-wise) and vertically center the elements, and nothing is working! No matter what I change, the Navbar looks exactly the freaking same.
My starting point is the carousel template here and haven't changed much yet appearance wise (mainly colours). What would I have to change on that template to achieve this effect, I can post code if asked to.
Cheers
|
|
|
|
|
When I started using bootstrap I found it difficult to manipulate also. I hear your frustration! What I did was start using firebug with firefox as an aid so I could click on the page and see what element I was dealing with then try and find that element in the css file, see what the settings were and change them to see what happened: to see if it was getting me where I wanted to go. I am sure chrome or other browsers must have something similar so you can view what the existing css is and try stuff. Search the bootstrap css file for .navbar and you will see a min-height setting. Try changing that and see what happens. Find the navbar container and change the padding-left...investigate and try things.
vbmike
|
|
|
|
|
I need to get the userId from URL and then build the href dynamically.
For example in the URL the userId is Tom
then I want to build the href as
../settings/userIdSetting.htm?userId=Tom
and assign it to <a id= "userSettingId" href="../settings/userIdSetting.htm?userId=Tom">User Account </a>
Is this possible.
Thanks in Advance,
Kim
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Sortable Table</title>
<script language="javascript" type="text/javascript" src="../js/common.js"></script>
<script language="javascript" type="text/javascript" src="../js/jquery-1.9.1.min.js"></script>
<script language="javascript" type="text/javascript" src="../javascript/d3.v3.min.js"></script>
<script language="javascript" type="text/javascript" src="../js/shCore.js"></script>
<script language="javascript" type="text/javascript" src="../js/shBrushJScript.js"></script>
<link type="text/css" href="../css/shCoreDefault.css" rel="stylesheet" />
</head>
<script>
<pre lang="xml">// get the userId from URL
var userId = getUrlVar('userId');
function putUserId() {
document.getElementById("userSettingId").innerHTML = "../settings/userIdSetting.htm?userId=" + userId ;
}
</script>
<body onLoad = putTenantId()>
<h2>Server Settings</h2>
<!-- Need to get the userId from URL -->
<a id= "userSettingId" href="../settings/userIdSetting.htm?userId=Tom">User Account </a>
<br/>
<br>
<hr>
</body>
</html></pre>
|
|
|
|
|
would want it in PHP?
if yes:
<?php
$userId = $_GET['userId'];
?>
<a id= "userSettingId" href="../settings/userIdSetting.htm?userId=<?php echo $userId; ?> >User Account </a>
This should work
|
|
|
|
|
how do I create a prototype for my business plans 
|
|
|
|
|
By doing research and asking proper questions. Try your local chamber of commerce or other business association.
Veni, vidi, abiit domum
|
|
|
|
|
Do Google search with proper keywords like "Mock-up" or "Prototype"
thatrajaCode converters | Education Needed
No thanks, I am all stocked up. - Luc Pattyn
When you're wrestling a gorilla, you don't stop when you're tired, you stop when the gorilla is - Henry Minute
|
|
|
|
|
For creating a prototype for your business the most basic and the most important thing is to start with your industry and contact some person who can build something for you.
Do lots of research by using internet, social sources etc. and build a plan what you want to do and then execute your plan in the right direction.
|
|
|
|
|
Hi,
I am adding multiple og:image in my meta tags. How facebook and other social networking will pickup the default image? how can I force a specific image to be the default image?
<meta property="og:image" content="http://www.website.com/images/logo/pic1.png" />
<meta property="og:image" content="http://www.website.com/images/logo/pic2.png" />
<meta property="og:image" content="http://www.website.com/images/logo/pic3.png" />
Thanks,
Jassim[^]
Technology News @ www.JassimRahma.com
|
|
|
|
|
I'm doing a job currently (MVC5), and the client wants a blog as a part of their website.
I've never had to do this before, any advice? I could probably roll my own fairly easily, but it wasn't too long ago that I thought the same about a CSV parser.
Is there an industry standard way of dealing with this sort of scenario?
Thanks
|
|
|
|